-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
130 lines (130 loc) · 4.39 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
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
<!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" />
<title>Contact Us</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="assets/icons/at.svg" type="image/x-icon" />
<link rel="stylesheet" href="assets/css/all.css" />
<link rel="stylesheet" href="assets/css/query.css" />
<script src="https://unpkg.com/phosphor-icons"></script>
<script defer src="assets/js/all.js"></script>
</head>
<body class="body">
<div class="container">
<section class="nav">
<div class="nav-profile">
<img
src="assets/img/profile-icon.png"
alt="user-image"
class="user-image"
/>
<p class="user-name">Akhed Jenish</p>
</div>
<hr class="dash" />
<menu class="menu">
<p class="menu-name">MENU</p>
<ul class="menu-items">
<li>
<a href="home.html"><i class="ph-house"></i>Home</a>
</li>
<li>
<a href="#" class="link1-im"
><i class="ph-telegram-logo"></i>Instant Messenger</a
>
<a href="#" class="link2-im"
><i class="ph-telegram-logo"></i>Instant<br />
Messenger</a
>
</li>
<li>
<a href="notes.html"><i class="ph-note-pencil"></i>Notes</a>
</li>
<li>
<a href="community.html"
><i class="ph-users-three"></i>Community</a
>
</li>
<li>
<a href="myprofile.html"><i class="ph-user"></i>My Profile</a>
</li>
<li class="nav-logout">
<a href="#"><i class="ph-sign-out"></i>Log Out</a>
</li>
</ul>
</menu>
<a href="contact.html" class="contact-us-btn contact-active"
>Contact Us</a
>
</section>
<section class="search">
<button class="nav-btn">
<i class="ph-list" name="open-nav"></i
><i class="ph-x" name="close-nav"></i>
</button>
<div class="search-bar">
<input type="text" placeholder="Search" class="search-bar-input" />
<button class="search-icon-btn">
<i class="ph-magnifying-glass"></i>
</button>
</div>
<button class="log-out">LOG OUT</button>
</section>
<section class="main contact-main">
<div class="contactinfo">
<div>
<h2>Contact Info</h2>
<ul class="info">
<li>
<span><i class="ph-map-pin-line"></i></span>
<span
>Dr, R K Desai Marg, <br />Opp. Mission Hospital, <br />
Athwalines, Surat, <br />Gujarat 395001</span
>
</li>
<li>
<span><i class="ph-envelope-open"></i></span>
<span>[email protected]</span>
</li>
<li>
<span><i class="ph-phone-call"></i></span>
<span>0261 224 0146</span>
</li>
</ul>
</div>
</div>
<div class="contactForm">
<h2>Send a Message</h2>
<div class="formBox">
<div class="inputBox w50">
<input type="text" name="" required />
<span>First Name</span>
</div>
<div class="inputBox w50">
<input type="text" name="" required />
<span>Last Name</span>
</div>
<div class="inputBox w50">
<input type="email" name="" required />
<span>Email</span>
</div>
<div class="inputBox w100">
<textarea name="" required></textarea>
<span>Write your message here...</span>
</div>
<div class="inputBox w100">
<input type="submit" value="Send" />
</div>
</div>
</div>
</section>
</div>
</body>
</html>