-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 1.81 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 1.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<!-- meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- title -->
<title>Weather App</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Pacifico" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="text-center heading">Weather App</h1>
</header>
<main>
<div class="container">
<div class="col-xs-0 col-md-3"></div>
<div class="col-xs-12 col-md-6 card-container">
<div class="card">
<center>
<div id="city"></div>
<div id="icon"></div>
<div id="description"></div>
<div id="temp"></div>
<div id="toggleButton">
<button type="button" name="button" id="toggle">
°C / °F
</button>
</div>
</center>
</div>
</div>
<div class="col-xs-0 col-md-3"></div>
</div>
</main>
<footer class="text-center">
<div id="footer">
<i class="fa fa-code"></i> by <a href="https://twitter.com/MdAbuZafar19">Zafar</a>
</div>
</footer>
<!-- custom script -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>