Chat freely about anything...

User avatar
By schufti
#77465 Hi,
your html is still broken

Code: Select all<!DOCTYPE HTML>
<html>
<head><title>Weather Observations</title>
<body>
<h2>Treyburn Lakes<br>
Indianapolis, IN 46239</h2></head><br>
....
</body>
</html>


a) a </head> tag should go before <body> and not somewhere else
b) the header (between <h2> and </h2> should also be enclosed in <header> </header> tags (not to be confused with <head>!!!)

Code: Select all<!DOCTYPE HTML>
<html>
<head><title>Weather Observations</title></head>
<body>
<header><h2>Treyburn Lakes<br>
Indianapolis, IN 46239</h2></header>
<br>
....
</body>
</html>


maybe this can help to sucessfully render this page on all major browsers and posiitively check it on online html checkers ...
User avatar
By Sirquil
#79095 Update 11/11/2018 Running new version 1.3.7 with improved FTP file transfers!

New URL for ESP8266 based server of project: RobotDyn WiFi D1 R2, ESP8266 based server  change due to Gateway replacement by Internet Provider.  

Domain based URL remains unchanged:  
Domain based web site, part of project .

Quicker responds to 'GET' requests. Auto wiFi reconnects with date, time stamping; see "WIFI.TXT". and logging of server restarts; see "SERVER.TXT."

Attached current online version of project.

William
Attachments
New Version 1.3.7 of project; with FTP transfers!
(17.56 KiB) Downloaded 199 times
Last edited by Sirquil on Mon Jan 24, 2022 4:46 pm, edited 3 times in total.
User avatar
By Sirquil
#80546 02/12/2019

Updated link, ESP8266 based Weather Observations server, running on a WeMoss D1 R2 Development board: http://weather-1.ddns.net/Weather

Second website is for a Domain hosted website running from the same sketch:
https://observations-weather.000webhostapp.com/index.php

William
Attachments
Features of "NTP_Web_Interface_Data_Logger.ino"
(4.68 KiB) Downloaded 349 times
Last edited by Sirquil on Mon Jan 24, 2022 4:47 pm, edited 1 time in total.