-
Notifications
You must be signed in to change notification settings - Fork 1
/
blogs.html
89 lines (88 loc) · 2.61 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<title>Fash Tech Xperts</title>
</head>
<body>
<nav class="navbar h-nav-resp">
<ul class="nav-list v-class-resp">
<div class="logo">Fash Tech Xparts</div>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blogs.html">Blog</a></li>
</ul>
<div class="rightNav v-class-resp">
<input type="text" name="search" id="search">
<button class="btn btn-sm">Search</button>
</div>
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
</nav>
<hr>
<section class="last-section">
<table class="t">
<thead>
<tr>
<th>Contact Us</th>
</tr>
</thead>
<tbody>
<tr>
<td>[email protected]</td>
</tr>
<tr>
<td>+91 9313112518</td>
</tr>
</tbody>
</table>
<hr>
<table class="t">
<thead>
<tr>
<th>Follow Us</th>
</tr>
</thead>
<tbody>
<tr>
<td>Facebook</td>
</tr>
<tr>
<td>Instagram</td>
</tr>
<tr>
<td>Pinteresr</td>
</tr>
</tbody>
</table>
<hr>
<table class="t">
<thead>
<tr>
<th>Newsletter</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="email" name="email" id="email" placeholder="Enter Your Email"> <button class="btn btn-sm btn-dark">Submit</button>
</td>
</tr>
</tbody>
</table>
</section>
<footer class="background">
<p class="text-footer">
Copyright © 2021 FashTechXparts - All rights reserved
</p>
</footer>
<script src="resp.js"></script>
</body>
</html>