-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
95 lines (77 loc) · 2.74 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
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>My persornal Web blog</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,500,500i,700|Playfair+Display:400,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="grid-container">
<nav>
<div id="nav-flex-logo">
<h1 id="logo">Kota City</h1>
</div>
<ul id="nav-ul">
<li class="nav-item">
<a class="nav-link" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">BLOG</a>
</li>
</ul>
</nav>
<section id="post-img"></section>
<section class="post" id="post-blog-1">
<div class="text-summary">
<a href="blog.html" alt="Gadisar Lake" class="link">
<h4>Seven Wonders Park</h4>
<p class="post-summary"><em>Manpreet Singh | 2018/02/10</em></p>
</a>
<p>Seven Wonders Park in Kota comprises of miniatures of all the Seven Wonders of the World. These include Taj
Mahal, Great Pyramid, Eiffel Tower, Leaning Tower, Christ the Redeemer of Brazil, Colosseum, and Statue of
Liberty.. </p>
<a href="blog.html" alt="Read More">
<div class="btn btn-primary">Read more</div>
</a>
</div>
</section>
<section class="post" id="post-blog-2">
<a href="blog.html" alt="Fort View" class="link">
<div class="text-summary">
<a href="blog.html" alt="Kishor Sager Lake" class="link">
<h4>Kishor Sager lake</h4>
<p class="post-summary"><em>Ravi Kumar | 2019/08/110</em></p>
</a>
<p> Good place to spend time in either evening or morning . Here you can see the beautiful scenario of sun
rising and seting. You can take Photos and videos. </p>
<a href="blog.html" alt="Read More">
<div class="btn btn-primary">Read more</div>
</a>
</div>
</a>
</section>
<section class="post" id="post-img-2"></section>
<footer>
<em> ©2020</em>
<em> Design by Manpreet</em>
<section>
<a href="https://www.linkedin.com/in/manpreet-singh-027199181/">
<img alt="linkedin" class="link-img" src="https://image.flaticon.com/icons/svg/174/174857.svg"/>
</a>
<a href="https://twitter.com/manpreet10196">
<img alt="twitter" class="link-img" src="https://image.flaticon.com/icons/svg/1409/1409937.svg"/>
</a>
<a href="https://https://www.facebook.com/">
<img alt="facebook" class="link-img" src="https://image.flaticon.com/icons/svg/1051/1051309.svg"/>
</a>
</section>
</footer>
</div>
</body>
</html>