-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (94 loc) · 2.72 KB
/
index.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
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://fav.farm/✅" />
<title>30 Days JS</title>
</head>
<body>
<nav id="nav" class="nav">
<div class="logo">
<h1>{30 JS}</30></h1>
</div>
<ul>
<li>
<a href="#hero" class="nav-link current">Home</a>
</li>
<li>
<a href="#projects" class="nav-link">Projects</a>
</li>
<li>
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</nav>
<div class="jump-top">
<a href="#hero">
↑
</a>
</div>
<section class="hero" id="hero">
<h1 class="main-header">Vanilla Javascript </h1>
<p class="main-text">
30 Days of Vanilla JS Coding Challenge! where I build 30 projects with vanilla JS following #wesbos Challenge!
</p>
</section>
<section class="Projects-container" id="projects"></section>
<section class="form-section" id="contact">
<h2 class="form-intro">
I'm always interested in hearing about the project, so if you have any
feedback please get in touch.
</h2>
<div class="form-cont">
<form
action="https://formspree.io/f/xrgnepyj"
method="post"
class="form-container"
id="contact-form"
>
<div class="input-field">
<input
type="text"
class="name-input box"
placeholder="Full Name"
maxlength="30"
required
/>
</div>
<div class="input-field">
<input
type="email"
id="email"
name="email"
class="email-input box"
placeholder="Your Email"
required
/>
</div>
<div class="input-field">
<textarea
class="box-text box"
name="comment"
id="comment-input"
cols="30"
rows="6"
placeholder="Please write your comment..."
maxlength="100"
aria-placeholder="Enter text area ..."
required
></textarea>
</div>
<p class="hide" id="alert"></p>
<button class="main-btn center" type="submit">Get in touch</button>
</form>
</div>
<footer>
© Copyright 2024.30 days of Vanilla JS By
<a href="https://github.com/FevenSeyfu">FevenSeyfu.</a>
</footer>
</section>
<script src="script.js"></script>
</body>
</html>