-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
76 lines (76 loc) · 2.37 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">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Petter Boström CV</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lora&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="/Css/styles.css" />
<link rel="stylesheet" type="text/css" href="/Css/contact.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="mainflex">
<header>
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/studies.html">Studies</a></li>
<li><a href="/work_exp.html">Work experience</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
<li><a class="current" href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="flexbox">
<section class="overlay">
<form action="/form.html" method="POST">
<h1>Contact me!</h1>
<label for="username">Name</label>
<input type="text" name="username"></input>
<br>
<label for="email">E-mail</label>
<input type="text" name="email"></input>
<br>
<br>
<label for="msg">Message</label>
<br>
<textarea id="msg" name="msg" rows="10" cols="40"></textarea>
<br>
<input type="submit" name="Send">
</form>
</section>
</div>
</main>
<footer>
<div class="footerContent">
<div>
<span>© Petter Boström 2023</span>
</div>
<div>
<a
href="https://www.linkedin.com/in/petter-bostr%C3%B6m-a72ba788/"
class="fa fa-linkedin"
target="_blank"
></a>
</div>
<div>
<a
href="https://github.com/Nomijah"
class="fa fa-github"
target="_blank"
></a>
</div>
</div>
</footer>
</div>
</body>
</html>