-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (68 loc) · 2.23 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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:100,300,400,500,600,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="./scss/main.scss">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="contact">
<script type="text/javascript" src="./js/index.js"></script>
<div class="menu-icon">
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
<section id="menu">
<nav>
<a href="/">HOME</a>
<a href="resume">ABOUT</a>
<a href="portfolio">PORTFOLIO</a>
<a href="contact">CONTACT</a>
</nav>
</section>
<section class="info-section">
<div class="logo">
Adrian
</div>
<div class="info-box">
<h4>Email</h4>
<p>[email protected]</p>
<h4>Phone</h4>
<p>+44(0)7507 511 190</p>
<h4>Find me on</h4>
<div class="icon-section">
<a href="https://www.linkedin.com/in/adrian-greenland-47628721/">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<section class="content-area">
<div class="img-container">
<div class="form-section">
<form action="/" method="POST">
<h4>Send a message</h4>
<input type="text" name="name" required placeholder="name">
<input type="text" name="email" required placeholder="email">
<textarea name="message" rows="10" required placeholder="leave your message"></textarea>
</form>
<button type="submit">Send message</button>
</div>
</div>
<div class="contact-section">
<div class="contact-info">
<h1>Contact Us</h1>
<div class="contact-box">
<h5>Phone</h5>
<p>+44(0) 7507 511 190</p>
</div>
<div class="contact-box">
<h5>Email</h5>
<p>[email protected]</p>
</div>
<div class="contact-box">
<h5>Address</h5>
<p>London, UK</p>
</div>
</div>
</section>
</body>
</html>