-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
67 lines (63 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Reach Evan</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<link href="bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
<div class="container-fluid">
<li class="navbar-brand">Portfolio</li>
<ul class="navbar-nav me-auto">
<li class="nav-item"><a href="index.html" class="nav-link" rel="noopener noreferrer" >Home</a></li>
<li class="nav-item"><a href="aboutme.html" class="nav-link" rel="noopener noreferrer">About Me</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
</header>
<div id="progressbar"></div>
<div id="scrollpath"></div>
<div class="container">
<div style="text-align:center; color: white">
<h2>Contact Me</h2>
<p>Swing by for a cup of coffee, or leave me a message ^^</p>
</div>
<div class="contactrow">
<div class="column left">
<img src="image/58535.jpg" height="500" alt="workplace-illustration">
</div>
<div class="column right" style="color: white">
<form action="#">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="email">Email</label>
<input type="text" id="email" name="mail" placeholder="Your E-Mail..">
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:170px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</div>
<footer>
<p>Took quite a few cups of coffee and a lot of Googling.</p>
<p><small>Find me on following platforms.</small></p>
<div class="button-wrapper">
<a href="https://www.facebook.com/N0tLucifer/" class="sm-fb" rel="noopener noreferrer"><img src="image/icons8-facebook-64.png" alt="#" class="sm"></a>
<a href="https://github.com/N-Evan" class="sm-github" rel="noopener noreferrer"><img src="image/icons8-github-64.png" alt="#" class="sm"></a>
<a href="https://www.linkedin.com/in/n-evan/" class="sm-github" rel="noopener noreferrer"><img src="image/icons8-linkedin-circled-64.png" alt="#" class="sm"></a>
<a href="https://twitter.com/NotLuc1fer" class="sm-twitter" rel="noopener noreferrer"><img src="image/icons8-twitter-64.png" alt="#" class="sm"></a>
<a href="https://www.deviantart.com/n0tlucifer" class="sm-deviantart" rel="noopener noreferrer"><img src="image/icons8-deviantart-64.png" alt="#" class="sm"></a>
</div>
<script src="script.js"></script>
</footer>
</body>
</html>