-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (83 loc) · 4.79 KB
/
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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://icons-for-free.com/iconfiles/png/512/forecast+partly+cloudy+weather+icon-1320196484400215944.png">
<title>Home</title>
</head>
<body>
<div class="container-fluid main_menu">
<div class="row">
<div class="col-md-12 col-12 mx-auto">
<nav class="navbar navbar-expand-lg ">
<a class="navbar-brand" href="#"> <i class="fas fa-snowflake"></i> Myweather <i class=" fas fa-snowflake"></i></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/weather">Weather</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about">About</a>
</li>
</div>
</nav>
</div>
</div>
</div>
<div class="container-fluid main_header ">
<div class="row">
<div class="col-md-10 col-12 mx-auto">
<div class="row">
<div class="col-md-6 col-12 main_header_left">
<p>Welcome to Myweather</p>
<h1>Get the latest <span class="text_clr">Weather </span> info for your city</h1>
<a href="/weather"><button>Check Now</button></a>
</div>
<div class="col-md-6 col-12 main_header_right">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class=" w-100" src="https://image.freepik.com/free-vector/young-couple-rain-vector-illustration_74855-4590.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class=" w-100" src="https://image.freepik.com/free-vector/young-couple-walking-umbrella-rainy-day-city-date-street-flat-vector-illustration-weather-urban-lifestyle_74855-8711.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class=" w-100" src="https://image.freepik.com/free-vector/women-dogs-walking-fall-concept-illustration_203587-57.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>Created with ❤ by Kunal</p>
</footer>
</body>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</html>