20 lines
515 B
HTML
20 lines
515 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Weather</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<main id="weather-panel">
|
|
<header id="time">
|
|
<span class="material" id="time-icon"></span>
|
|
<span id="time-value"></span>
|
|
</header>
|
|
<section id="current"></section>
|
|
<section id="hourly"></section>
|
|
<section id="daily"></section>
|
|
</main>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |