-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
140 lines (122 loc) · 5.2 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
131
132
133
134
135
136
137
138
139
140
<!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="./assets/css/contact.css">
<link rel="icon" href="./assets/img/atlassian_jira_logo_icon_170511.png">
<title> echo-echo </title>
</head>
<body>
<!-- navbar-------------------------------------------------------------------------------------------------------------- -->
<header>
<a href="./index.html"><img src="./assets/img/download.webp" alt="logo"></a>
<div>
<nav>
<ul>
<li><a href="./index.html"> Home </a></li>
<!-- dropdown-menu---------------------------------------------------------------------------------------------- -->
<li class="dropdown">
<p> Dropdown </p>
<div>
<a href="#"> Menu-1 </a>
<a href="#"> Menu-2 </a>
<a href="#"> Menu-3 </a>
</div>
</li>
<li><a href="./about.html"> About </a></li>
<li><a href="./services.html"> Services </a></li>
<li><a href="./faq.html"> FAQ </a></li>
<li><a href="./contact.html"> Contact Us </a></li>
</ul>
</nav>
<!-- hamburger---------------------------------------------------------------------------------------------- -->
<a class="menu-button"><i class="fa-solid fa-bars-staggered"></i></a>
<!-- download-button-------------------------------------------------------------------------------------------------- -->
<a href="#" download="echo-file"><button type="button"> Download now </button></a>
</div>
</header>
<main>
<!-- background-image---------------------------------------------------------------------------------------- -->
<div class="bg-img"></div>
<!-- introduction-section-------------------------------------------------------------------------------- -->
<section class="intro animate__animated animate__backInUp">
<div>
<span> CONTACT </span>
<h1> Get In Touch </h1>
<p> Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. </p>
<a href="#"><button> How we work </button></a>
<a href="#"><button class="wbtn"> Contact us </button></a>
</div>
<img src="./assets/img/xhero_1.png.pagespeed.ic.DAujTKLG4F.webp" alt="puzzle">
</section>
<!-- login-section-------------------------------------------------------------------------------------------- -->
<section class="login">
<div>
<span> Contact Us </span>
<h2> Let's have a talk </h2>
</div>
<div>
<form action="#">
<div class="flogin">
<div>
<label for="fname"> First Name </label>
<br>
<input type="text" id="fname" name="fname" required>
</div>
<div>
<label for="lname"> Last Name </label>
<br>
<input type="text" id="lname" name="lname" required>
</div>
</div>
<div class="llogin">
<label for="email"> Email address </label>
<br>
<input type="email" id="email" name="email" required>
</div>
<div class="llogin">
<label for="message"> Message </label>
<br>
<textarea id="message" name="message"></textarea>
</div>
<br>
<a href="#"><button type="submit"> Send Message </button></a>
</form>
</div>
</section>
</main>
<!-- footer-section------------------------------------------------------------------------------------------------ -->
<footer>
<div class="social">
<h4> About Echo </h4>
<p> Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. </p>
<div>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
</div>
</div>
<div class="links">
<h4> Pages </h4>
<a href="#"> Blog </a>
<a href="./about.html"> About </a>
<a href="./contact.html"> Contact </a>
</div>
<div class="links">
<h4> Resources </h4>
<a href="#"> Blog </a>
<a href="./about.html"> About </a>
<a href="./contact.html"> Contact </a>
</div>
<div class="contact">
<h4> Contact </h4>
<p><i class="fa-solid fa-envelope"></i><a href="#"> info@Echo </a></p>
<p><i class="fa-solid fa-phone"></i><a href="#"> +1 222 212 3819 </a></p>
<p><i class="fa-solid fa-location-dot"></i><a href="#"> 43 Raymouth Rd. Baltemoer, London 3910 </a></p>
</div>
</footer>
<script src="https://kit.fontawesome.com/0a0b320b5f.js" crossorigin="anonymous"></script>
</body>
</html>