https://github.com/fastuptime/website_status_html_js
Website status
https://github.com/fastuptime/website_status_html_js
uptime
Last synced: 8 months ago
JSON representation
Website status
- Host: GitHub
- URL: https://github.com/fastuptime/website_status_html_js
- Owner: fastuptime
- License: other
- Created: 2023-01-07T13:50:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-07T17:27:36.000Z (about 3 years ago)
- Last Synced: 2025-02-17T09:13:37.665Z (11 months ago)
- Topics: uptime
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WebSite_Status_HTML_JS
# Kodlar
```
var fastuptime = document.getElementById("fastuptime");
let site = "https://fastuptime.com";
setInterval(() => {
fetch(site).then(function(response) {
if (response.status == 200) {
fastuptime.innerHTML = "Site is online";
fastuptime.style.color = "green";
fastuptime.title = "Site is online - " + site;
} else {
fastuptime.innerHTML = "Site is offline";
fastuptime.style.color = "red";
fastuptime.title = "Site is offline - " + site;
}
}).catch(function(error) {
fastuptime.innerHTML = "Site is offline";
fastuptime.style.color = "red";
fastuptime.title = "Site is offline - " + site;
});
}, 1000);
```
# Resimler


---
- ✨ [Destek İçin](https://fastuptime.com)
- 💕 [Discord](https://fastuptime.com/discord)
- 🎖️ [FasterHost Technology](https://fasterhost.tech/)
- ✨ İletişim için [Tıkla!](mailto:fastuptime@gmail.com)
# License
- Its protected by Creative Commons ([CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/))
