-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 1.58 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 1.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>A JavaScript project</title>
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<h1>Share Your Ideas</h1>
<div id="app">
<!-- index.html -->
</div>
<div>
<div class="wrapper centered">
<article class="letter">
<form id="contactForm">
<div class="side">
<h1>Contact us</h1>
<p>
<textarea
placeholder="Your message"
id="message"
name="message"
></textarea>
</p>
</div>
<div class="side">
<p>
<input
type="text"
id="name"
name="name"
placeholder="Your name"
required
/>
</p>
<p>
<input
type="email"
id="email"
name="email"
placeholder="Your email"
required
/>
</p>
<p>
<button>Send</button>
</p>
</div>
</form>
</article>
<div class="envelope front"></div>
<div class="envelope back"></div>
</div>
<p class="result-message centered">Thank you for your message</p>
</div>
<script src="script.js"></script>
<script src="main.js"></script>
</body>
</html>