-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
70 lines (62 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<title>My First Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<h1> Sergey </h1>
<a href="contact.html">
<div id="contact">
<h4> Contact </h4>
</div>
</a>
<a href="portfolio.html" >
<div id="portfolio">
<h4> Portfolio </h4>
</div>
</a>
<a href="main_index.html" >
<div id="about">
<h4> About </h4>
</div>
</a>
<div id="contactbox">
<div id="contactinfo">
<div id="contact123">
<h2> Contact </h2>
</div>
<div id="formbody">
<form id="name">
<label for="fname">Name</label>
<br>
<input id="fname" name="name" placeholder="Your Name" type="text">
<br>
<label for="email">Email</label>
<br>
<input id="email" name="email" placeholder="[email protected]" type="text">
<br>
<label for="message"> Message</label>
<br>
<textarea id="message123" rows="15" name="message"></textarea>
<br>
</form>
<br>
<br>
<br>
<button id="submit">Submit</button>
</div>
</div>
<div id="connectwithme_contact" >
<h3 id="h3"> Connect with me </h3>
<a href="https://github.com" target="_blank"><img src="assets/images/Github.png" alt="Github" class="socialMedia"></a>
<a href="https://www.linkedin.com/in/sergey-shcherbakov-34743460" target="_blank"><img src="assets/images/linkedin.png" alt="LinkedIn" class="socialMedia"></a>
<a href="https://stackoverflow.com/users/story/7303797" target="_blank"><img src="assets/images/Stack.png" alt="Stack" class="socialMedia"></a>
</div>
</div>
<footer id="contactfooter">
<p>Copyright @ 2017 Sergey Shcherbakov</p>
</footer>
</body>
</html>