-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
91 lines (43 loc) · 1.76 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact us</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<nav class="container1">
<div class="logo">WeatherInfo</div>
<ul>
<a href="./index.html">
<li>Home</li>
</a>
<a href="./guide.html">
<li>Guide</li>
</a>
<a href="./about.html">
<li>About Us</li>
</a>
<a href="./contact.html">
<li>Contact us</li>
</a>
</ul>
</nav>
</header>
<main class="main">
<div class="contact">
<h1>Contact US</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Soluta, repellat aspernatur esse numquam fugiat odit sunt ab assumenda excepturi. Sit harum ad consequuntur. Laboriosam itaque magnam, quo dolor perferendis labore ipsum. Quis impedit, quo magnam unde quam quod vero in harum eligendi nesciunt dolorem. Veritatis voluptas soluta itaque illum aperiam.</p>
<div class="data">
<p>PH : 00000001010</p>
<p>Mail: demo123@gmail.com</p>
</div>
</main>
<footer class="footer">
<p> ©Sagar Das</p>
</footer>
</div>
</body>
</html>