-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 960 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>Weather Project</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<nav class="topnav">
<ul>
<li><a class="active" href="index.html"><span>Weather </span>Cards</a></li>
<li><a href="input/"><span>Weather on </span>Input</a></li>
<li><a href="current/"><span>Weather </span>Here</a></li>
</ul>
</nav>
<section>
<h2>WEATHER OF CITIES</h2>
<div id="xyz"></div>
</section>
<script src="main.js"></script>
</body>
</html>