-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact__us.html
122 lines (122 loc) · 4.9 KB
/
contact__us.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Lato:wght@300;400&family=Red+Hat+Display:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous"> <link rel="stylesheet" href="fons/style.css">
<link rel="stylesheet" href="css/contact__us.css">
<title>Homework19</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__container">
<a href="" class="header__logo"><img src="/img/Logo.svg" alt=""></a>
<div class="header__menu menu">
<div class="menu__icon">
<span></span>
</div>
<nav class="menu__body">
<ul class="menu__list">
<li><a data-goto=".page__section_1" href="/home.html" class="menu__link">HOME</a></li>
<li><a data-goto=".page__section_2" href="/about.html" class="menu__link">ABOUT</a></li>
<li><a data-goto=".page__section_3" href="/works.html" class="menu__link">WORKS</a></li>
<li><a data-goto=".page__section_2" href="/blog.html" class="menu__link">BLOG</a></li>
<li><a data-goto=".page__section_3" href="/contact__us.html" class="menu__link">CONTACT</a></li>
</ul>
</nav>
<form id="form__search" action="">
<input id="search" type="search">
<button class="search__btn"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</header>
<section class="container__contact">
<div class="block__contact-us">
<div class="title__contact-us">
<h5>Contact Us</h5>
</div>
<div class="explanation__contact-us">
<p>
If you need our help with your user account, have questions about how to use the platform
or are experiencing technical difficulties, please do not hesitate to contact us.
</p>
</div>
</div>
<div class="block__contact-info-form">
<div class="contact-info">
<h4>Contact information</h4>
<p>486 Rahi street, Berlin .98 Germany</p>
<p><span class="icon-Tel"></span>+48 601 366 816</p>
<p><span class="icon-Email"></span>[email protected]</p>
<div class="sochial__link">
<h3>Follow Us</h3>
<a href=""><span class="icon-Fb"></span></a>
<a href=""><span class="icon-li"></span></a>
<a href=""><span class="icon-Tw"></span></a>
<a href=""><span class="icon-dr"></span></a>
</div>
</div>
<div class="contact__form">
<form action="#" id="form" class="form__body">
<div class="form__name">
<div class="form__item">
<label for="formName" class="form__label">Name*</label>
<input id="formName" type="text" placeholder="Walter Moss" name="name" class="form__input _req">
</div>
<div class="form__item">
<label for="formEmail" class="form__label">E-mail*</label>
<input id="formEmail" type="text" placeholder="[email protected]" name="Email" class="form__input _req _email">
</div>
<select name="categories" class="reason__contact" >
<option >Reason for contact</option>
<option >two</option>
<option >three</option>
<option >four</option>
<option >five</option>
<option >six</option>
<option >seven </option>
<option >eight</option>
<option >nine</option>
<option >ten</option>
</select>
<div class="form__comment">
<label for="comment" class="form__label">Message*</label>
<input id="comment" type="text" placeholder="Hi there ..." name="Website" class="form__input _req">
</div>
</div>
<button type="submit" class="form__button"> <span>Send</span><img src="/img/contact/Arrow.svg" alt=""></button>
</form>
</div>
</div>
</section>
<footer class="footer">
<div class="footer__container">
<div class="contact__info">
<h5>Need a project?</h5>
<a href="tel:(239) 555-0108">(239) 555-0108</a>
<br>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="block__link">
<nav class="navigation__link">
<li><a href="/404.html">Facebook</a></li>
<li><a href="/404.html">Instagram</a></li>
<li><a href="/404.html">Dribbble</a></li>
<li><a href="/404.html">Linkedin</a></li>
</nav>
</div>
<div class="copyright__info">
<p>© Copyright Manifest Theme. Allrights reserved</p>
</div>
</div>
</footer>
</div>
<script src="js/valid.js"></script>
<script src="js/script.js"></script>
</body>
</html>