-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (58 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./register.css" />
</head>
<body>
<!-- Connect -->
<section class="connect">
<video
autoplay
muted
loop
class="video-container"
poster="../images/project-1.jpeg"
>
<source src="register.mp4" type="video/mp4" />
Sorry, your browser does not support embedded videos
</video>
<div class="video-banner">
<!-- Section Title -->
<div class="section-title">
<h1>let's get in touch</h1>
<div class="underline"></div>
</div>
<!-- End Of Section Title -->
<article class="register-article">
<h2>contact us</h2>
<form>
<div class="form-control">
<input type="text" class="register" placeholder="name" />
<input
type="email"
class="register"
name="email"
id="email"
placeholder="email"
/>
<textarea
style="letter-spacing: 0.125rem"
name="comments"
id=""
cols="30"
rows="10"
placeholder="ANY SUGGESTIONS OR FEEDBACK? "
></textarea>
</div>
<input type="button" class="submit-btn register" value="Submit" />
</form>
</article>
</div>
</section>
<!-- End Of Connect -->
</body>
</html>