-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
76 lines (71 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Falko Noe</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="icon" href="assets/images/favicon-32x32.png">
</head>
<body>
<div class="main-content-wrapper">
<div class="header-wrapper">
<div class="header-1">
<header>
<h1 class="my_name">Falko Noe</h1>
</header>
<nav class="navigation-bar">
<p class="nav-bar-text">
<a href="index.html">About</a>  |  
<a href="portfolio.html">Portfolio</a>  |  
<a href="contact.html">Contact</a>
</p>
</nav>
</div>
</div>
<div class="about-me-content">
<section class="main-content">
<h2 class="body-headers">Contact</h2>
<br>
<hr class="content">
<br>
<p class="form-descriptor">Name</p>
<form>
<input type="text" name="name" placeholder="John Doe">
</form>
<p class="form-descriptor">Email</p>
<form>
<input type="text" name="name" placeholder="[email protected]">
</form>
<p class="form-descriptor">Message</p>
<form>
<textarea rows="10"></textarea>
</form>
<br>
<button>Submit</button>
</section>
<aside class="connect-with-me">
<h3 class="body-headers">Connect with Me</h3>
<br>
<hr class="contact-me">
<br>
<a class="social-links" target="_blank" href="https://github.com/CodingKaiser">
<img src="assets/images/GitHubIcon.png" alt="GitHubIcon">
</a>
<a class="social-links" target="_blank" href="https://stackoverflow.com/users/7340614/fnoe">
<img src="assets/images/StackOverflowIcon.png" alt="StackOverflowIcon">
</a>
<a class="social-links" target="_blank" href="https://www.linkedin.com/in/falko-noe-bab87073">
<img src="assets/images/LinkedInIcon.png" alt="LinkedInIcon">
</a>
</aside>
</div>
<div class="push"></div>
</div>
<footer>
<p class="footer-copyright">
© Copyright 2017 Falko Noe
</p>
</footer>
</body>
</html>