-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
49 lines (49 loc) · 1.83 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale:1">
<title>Chatee - Contacts</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="/favicon.ico">
</head>
<body>
<header>
<ul>
<li><a href="index.html"><img src="Images/Chatee%20Header.png" alt=""></a></li>
<li><a href="developing.html">DEVELOPING</a></li>
<li><a href="about-me.html">ABOUT ME</a></li>
<li class="active"><a href="contacts.html">CONTACTS</a></li>
</ul>
</header>
<div class="contacts-main">
<div class="contacts-block">
<div class="left-side">
<div class="contacts-header">CONTACT ME</div>
<form action="">
<input type="text" placeholder="YOUR NAME" required>
<input type="email" placeholder="YOUR EMAIL" required>
<input type="text" placeholder="SUBJECT" required>
<textarea name="" id="" cols="30" rows="10" placeholder="YOUR MESSAGE" required ></textarea>
<input type="submit" value="SEND MESSAGE">
</form>
</div>
<div class="contacts-block-right">
<div class="contacts-info-header">CONTACT INFO</div>
<div class="my-email-text">MY EMAIL</div>
<div class="my-email-text my-email">himich01092001@gmail.com</div>
</div>
</div>
</div>
<footer>
<div class="footer-outer-container">
<div class="my-logo-and-name">
<img src="Images/Logo%20Centered.jpg" alt="Khimich Logo">
<span>Vladyslav Khimich</span>
</div>
<div class="github-link"><a href="https://github.com/vladyslavkhimich"><i class="fa fa-github-square"></i></a></div>
</div>
</footer>
</body>
</html>