Untitled
unknown
plain_text
9 months ago
1.5 kB
8
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAGI FORECAST</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img id="logo" src="logo.png" alt="LAGI FORECAST Logo">
<h1>LAGI FORECAST</h1>
</header>
<div class="container">
<div id="weather">
<h2>Weather Update</h2>
<p>Select location:</p>
<select id="location">
<option value="caloocan">Caloocan</option>
<option value="quezon-city">Quezon City</option>
</select>
<p id="weather-info">Loading...</p>
</div>
<div id="reminders">
<h2>Laging Reminders</h2>
<ul>
<li id="alert">Laging Alert: Loading...</li>
<li id="uv-check">Laging UV Check: Loading...</li>
<li id="outfit-guide">Laging Outfit Guide: Loading...</li>
</ul>
</div>
<div id="auth">
<h2>Sign In to Get Free SolMate Sunscreen!</h2>
<input type="text" id="username" placeholder="Enter your name">
<button onclick="signIn()">Sign In</button>
</div>
</div>
<div id="popup" class="hidden">
<p>Congrats! You got a free SolMate Sunscreen! 🌞</p>
<button onclick="closePopup()">OK</button>
</div>
<script src="script.js"></script>
</body>
</html>Editor is loading...
Leave a Comment