17 lines
406 B
HTML
17 lines
406 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"></header>
|
|
<section id="current"></section>
|
|
<section id="hourly"></section>
|
|
<section id="daily"></section>
|
|
</main>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |