-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
103 lines (100 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contactstyle.css">
<title>Document</title>
</head>
<body>
<header class="header-container">
<h2>
Schmt.
</h2>
<nav id="menuitem">
<a href="index.html">Home</a>
<a href="aboutus.html">About</a>
<a href="#">Service</a>
<a href="experience.html">Experience</a>
<a href="portfolio.html">Work</a>
<a href="blog.html">Blog</a>
<a href="#">Contact</a>
</nav>
<div class="hamburger-menu" onclick="hamburgerfunction()">
<button id="hammenu" class="hamburger-btn">
<span class="fa-solid fa-bars" id="icon"></span>
</button>
</div>
</header>
<div class="contact_container">
<div class="navi">
<p>
<a href="index.html">Home <span class="fa-solid fa-angle-right"></span></a>
<a href="#">Contact <span class="fa-solid fa-angle-right"></span></a>
<h1 class="contact_heading">Contact Us</h1>
</p>
</div>
<div class="contact_div">
<div class="contact_details">
<h1>Contact Us</h1>
<p>We're open for any suggestion or just to have a chat</p>
<div class="contact_fulldetails">
<div class="details">
<h4>Address</h4>
<p>198 West 21th Street</p>
<p>Suite 721 New York</p>
<p>NY 10016</p>
</div>
<div class="details">
<h4>Email</h4>
<p>[email protected]</p>
</div>
<div class="details">
<h4>Phone No</h4>
<p>+1234 5678 90</p>
</div>
</div>
<div>
<form>
<input class="form_field" type="text" placeholder="Name">
<input class="form_field" type="text" placeholder="Email">
<input class="form_field" type="text" placeholder="Subject">
<textarea class="form_field" name="message" cols="30" rows="3"
placeholder="Create a Message Here"></textarea>
</form>
<br>
<!-- <br> -->
<a class="btnmessage" href="#">Send Message</a>
</div>
<div class="followdiv">
<h3>
Follow Us Here
</h3>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">Instagram</a>
<a href="#">Dribble</a>
</div>
</div>
<div class="contact_map">
<div>
<img src="icon_error.png" alt="error">
</div>
<div class="errmessage">
<h3>Oops! Something Went Wrong</h3>
<!-- <p>This page didn't load Google Maps correctly. See the JavaScript console for technical details.</p> -->
</div>
<div class="errcontent">
<p>This page didn't load Google Maps correctly. See the JavaScript console for technical details.</p>
</div>
</div>
</div>
<footer class="contact_footer">
<p>Copyright ©2024 All rights reserved | This template is made with <i class="fa-solid fa-heart"></i> by Colorlib
</p>
</footer>
</div>
<script src="index.js"></script>
</body>
<script src="https://kit.fontawesome.com/cdc6dd237a.js" crossorigin="anonymous"></script>
</html>