-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
67 lines (50 loc) · 2.46 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>laitdsgn - Contact</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=keyboard_arrow_up" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid p-0">
<header>
<nav id="menu_container">
<a href="index.html"><img src="res/my_logo.png" alt="my logotype" id="my_logo"></a>
<div id="menu">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="about.html">About me</a>
<a href="siteinfo.html">Website</a>
</div>
</nav>
</header>
<main>
<div class="start2">
<h1 id="title3">Get in touch with me</h1>
<div id="contactme">
<button><img src="res/instagram.png" alt="instagram logo"> @ username</button> <br>
<button><img src="res/facebook.png" alt="facebook logo"> @ username</button> <br>
<a href="https://github.com/laitdsgn" target="_blank"><button><img src="res/github.png" alt="github logo"> @ laitdsgn</button></a> <br>
<button><img src="res/discord.png" alt="discord logo"> @ laitdsgn</button>
</div>
</div>
<div class="middle">
<h2 id="quote">"If you think math is hard, try web design" - Trish Parr</h2>
</div>
<div class="end">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<textarea name="message" cols="50" rows="9" placeholder="Send me a message via email" id="message"></textarea>
<button class="btn" type="submit" id="send">Send</button>
</form>
</div>
</main>
<footer>
made by laitdsgn. © 2024
</footer>
<a href="#" class="back-to-top"><span class="material-symbols-outlined">keyboard_arrow_up</span></a>
</div>
</body>
</html>