-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
204 lines (159 loc) · 6.63 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!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>Blogger</title>
<!-- font awesome-->
<script src="https://kit.fontawesome.com/8dbe968a52.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/all.min.css">
<!--stylesheet-->
<link rel="stylesheet" href="./css/owl.carousel.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav">
<div class="nav-menu flex-row">
<div class="nav-brand">
<a href="#" class="text-gray">Nitesh</a>
</div>
<div class="toggle-collapse">
<div class="toggle-icons">
<i class="fas fa-bars"></i>
</div>
</div>
<div>
<ul class="nav-items">
<li class="nav-link">
<a href="#">Home</a>
</li>
<li class="nav-link">
<a href="#">About me</a>
</li>
<li class="nav-link">
<a href="#">Blog</a>
</li>
<li class="nav-link">
<a href="#">Contact me</a>
</li>
</ul>
</div>
<div class="social text-gray">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
</div>
</div>
</nav>
<main>
<section class="site-title">
<div class="site-background">
<h3></h3>
<h1>
<span class="name">N</span>
<span class="m-left name">i</span>
<span class="m-left name">t</span>
<span class="m-left name">e</span>
<span class="m-left name">s</span>
<span class="m-left name">h</span>
</h1>
<h3> Anthing about your blog </h3>
<button class="btn">Blog</button>
</div>
</section>
<section>
<div class="blog">
<div class="container">
<div class="owl-carousel owl-theme blog-post">
<div class="blog-content" >
<img src="./assets/background.jpg" alt="blog-1">
<div class="blog-title">
<h3>
</h3>
<button class="btn btn-blog">Read</button>
<span></span>
</div>
</div>
<div class="blog-content" >
<img src="./assets/background.jpg" alt="blog-2">
<div class="blog-title">
<h3></h3><br>
<button class="btn btn-blog">Read</button>
<span></span>
</div>
</div>
<div class="blog-content" >
<img src="./assets/background.jpg" alt="blog-3">
<div class="blog-title">
<h3> </h3><br>
<button class="btn btn-blog">Read</button>
<span></span>
</div>
</div>
<div class="blog-content" >
<img src="./assets/background.jpg" alt="blog-4">
<div class="blog-title">
<h3></h3><br>
<button class="btn btn-blog">Read</button>
<span></span>
</div>
</div>
</div>
<div class="owl-navigation">
<span class="owl-nav-prev"><i class="fas fa-angle-left"></i></span>
<span class="owl-nav-next"><i class="fas fa-angle-right"></i></span>
</div>
</div>
</div>
</section>
</aside>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="about-us">
<h2>About me</h2>
<p> About the blog site</p>
</div>
<div class="inform" >
<h2>Feedback</h2>
<form id="inform" method="post" action="">
<input name="name" type="text" class="form-control" placeholder="Your Name" required>
<br>
<input name="email" type="email" class="form-control" placeholder="Your Emali" required><br><br>
<textarea name="Feedback" class="form-control" placeholder="Feedback" rows="10" required></textarea><br><br>
<input type="submit" class="form-control submit" value="Submit">
</form>
</div>
<div class="follow">
<h2>Follow me</h2>
<div>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-pinterest"></i>
</div>
</div>
</div>
<div class="rights flex-row">
<h4 class="text-gray">
Copyright ©2020 All rights reserved | made by
<a href="#" target="_black">Nitesh
</a>
</h4>
</div>
<div class="move-up">
<span><i class="fas fa-arrow-circle-up fa-2x"></i></span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/darkmode-js@1.5.6/lib/darkmode-js.min.js"></script>
<script>
new Darkmode().showWidget();
</script>
<script src="./js/Jquery3.4.1.min.js"></script>
<script src="./js/owl.carousel.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>