-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.html
84 lines (76 loc) · 3.91 KB
/
email.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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<!--These metas help with rendering issues-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
<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=Playfair+Display:ital@1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico">
<title>Delton Hughes</title>
</head>
<body>
<header>
<div class="navbar">
<div class="logo"><a href="index.html"><img src="images/D.png" alt="dlogo" class="dLogo"></a></div>
<ul class="links">
<li class="h--li"><a href="about.html" class="about"><i class="fa-solid fa-user"></i>About</a></li>
<li class="h--li"><a href="projects.html" class="project"><i class="fa-solid fa-briefcase"></i>Projects</a></li>
<li class="h--li"><a href="hobbies.html" class="hobby"><i class="fa-solid fa-golf-ball-tee"></i>Hobbies</a></li>
</ul>
<a href="contacts.html" class="action_btn">Get in Touch</a>
<div class="toggle_btn">
<i class="fas fa-bars"></i>
</div>
</div>
<div class="dropdown_menu">
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="contacts.html" class="action_btn">Get in Touch</a></li>
</div>
</header>
<!-- Start of Content -->
<main class="background-shapes">
<div class="random-shape"></div>
<div class="random-shape"></div>
<div id="content">
<h2 class="page_subt"><span>Send an Email to me!</span></h2>
<div id="f-Container">
<form class="nr-flex"
action="https://formspree.io/f/xqkvvegp"
method="POST">
<div class="i-box">
<input type="name" name="name" placeholder="Name" class="f-input">
<input type="email" name="email" placeholder="Email" class="f-input">
</div>
<textarea name="message" placeholder="Message" class="f-message"></textarea>
<!-- your other form fields go here -->
<button type="submit" class="action_btn">Send</button>
</form>
</div>
</div>
</main>
<script src="background-animation.js"></script>
<script>
const toggleBtn = document.querySelector('.toggle_btn')
const toggleBtnIcon = document.querySelector('.toggle_btn i')
const dropDownMenu = document.querySelector('.dropdown_menu')
toggleBtn.onclick = function () {
dropDownMenu.classList.toggle('open')
const isOpen = dropDownMenu.classList.contains('open')
toggleBtnIcon.classList = isOpen
? 'fa-solid fa-xmark'
: 'fa-solid fa-bars'
}
</script>
</body>
<footer>
<h4 id="copyright">©2023 Made by Delton Hughes</h4>
</footer>
</html>