-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystate.html
More file actions
76 lines (72 loc) · 3.8 KB
/
Copy pathmystate.html
File metadata and controls
76 lines (72 loc) · 3.8 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title> My Home State</title>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body id="b">
<nav class="navbar navbar-expand-sm navbar-dark bg-dark">
<div class="container">
<a href="" class="navbar-brand">Devansh </a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#fornavbar">
<span class="navbar-toggler-icon"> </span>
</button>
<div class="collapse navbar-collapse" id="fornavbar">
<ul class="navbar-nav text-center ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link"> Home </a>
</li>
<li class="nav-item">
<a href="skills.html" class="nav-link"> Skills </a>
</li>
<li class="nav-item">
<a href="mystate.html" class="nav-link"> Home State </a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid mt2">
<div class="row p-5 ">
<div class="col-12 text-center">
<h2 class="heading">Uttarakhand</h2>
<div class="text mr-auto text-center ">
<p style="margin: auto; width: 100%;">Nestled in the lap of the Himalayas, Uttarakhand is one of the most beautiful northern states of India that enthralls everyone with its spectacularly scenic landscapes. Charming hill stations juxtaposed against snow-capped peaks, quaint villages along winding mountain roads, serpentine rivers carving their way through the hills, world renowned conservation parks like ‘Jim Corbett Tiger National Park’ and ‘Asan Wetland Conservation Reserve’, world heritage sites like ‘Valley of Flowers’ and ‘Nanda Devi Biosphere Reserve’, waterfalls hurtling down slopes and serene lakes shimmering amidst beautiful towns – that’s Uttarakhand for you.</p>
</div>
</div>
</div>
<div class="row p-5">
<div class="col-md-4 ">
<div class="card mb-4 box-shadow text-white bg-dark">
<img class="card-img-top" src="KEDARNATH.jpg" alt="Kedarnath Temple">
<div class="card-body align-items-center d-flex justify-content-center">
<p class="card-text text">Kedarnath Temple</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow text-white bg-dark">
<img class="card-img-top" src="Valley-of-flowers.jpg" alt="Valley Of Flowers">
<div class="card-body align-items-center d-flex justify-content-center">
<p class="card-text text">Valley Of Flowers</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4 box-shadow text-white bg-dark">
<img class="card-img-top" src="Chopta-Trek.jpg" alt="Chopta Trek">
<div class="card-body align-items-center d-flex justify-content-center">
<p class="card-text text">Chopta Trek</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>