-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.58 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.58 KB
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
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="icon" type="image/x-icon" href="./Assets/logo.jpeg">
<title>SkyCast</title>
</head>
<body>
<video autoplay muted loop id="background-video">
<source src="./Assets/background.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="header">
<img src="./Assets/logo.jpeg">
<h1 class="first">Sky</h1>
<h1 class="second">Cast</h1>
</div>
<div class="main">
<div class="inmain" >
<img id="location-img" src="./Assets/location.jpg">
<input type="text" id="city-input" placeholder="Enter city name">
<img id="search-img" src="./Assets/search.png">
</div>
<button id="search-button" onclick="handleClick()">Let's Go <span class="material-symbols-outlined">flight_takeoff</span></button>
</div>
<script src="./JS/script.js"></script>
</body>
</html>