-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
33 lines (33 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Contact Us</title>
<link rel="stylesheet" href="./hub.css" type="text/css" media="all" />
</head>
<body id="contact">
<nav>
<header>Nexino Labs</header>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./services.html">Services</a></li>
<li><a class="nav-style" href="#">Contact</a></li>
</ul>
</nav>
<main class="contact-page">
<h1>Contact us</h1>
<div class="contact-page-item">
<p>
Nexino Labs Private Limited <br>
Plot No, Street address
<br>
City, State, Country.
<br>
</p>
<h4>+12-1234567890</h4>
<h4>For further enquires write to us at [email protected]</h4>
</div>
</main>
</body>
</html>