-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pet Project</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<article id="page-wraper">
<header id="header">
<img src="assets/logo.png" alt="stack logo" id="header-img" class="header__img" />
<nav id="nav-bar" class="header__nav">
<a href="#form" class="nav__link">Form</a>
<a href="#about" class="nav__link">About</a>
<a href="#video" class="nav__link">Video</a>
</nav>
</header>
<section id="form-wraper" class="section">
<form action="https://www.freecodecamp.com/email-submit" id="form">
<h1 class="about__title">More Information</h1>
<input name="email" required type="email" id="email" class="form__input" placeholder="Enter your email"
pattern="^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$" />
<input type="submit" id="submit" class="form__submit" value="Submit">
</form>
</section>
<section id="about" class="section">
<div class="about__item">
<h3 class="about-item__title">Mision</h3>
<p class="about-item__description">Description</p>
</div>
<div class="about__item">
<h3 class="about-item__title">Mision</h3>
<p class="about-item__description">Description</p>
</div>
<div class="about__item">
<h3 class="about-item__title">Mision</h3>
<p class="about-item__description">Description</p>
</div>
</section>
<section id="video_wraper" class="section">
<iframe id="video" width="560" height="315" src="https://www.youtube.com/embed/aRvpwr5ntKc?si=QwIZPJsNt6P77kRS" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</section>
<footer id="footer">
<a href="#contact" class="footer__link">Contact</a>
<a href="#privacy" class="footer__link">Privacy</a>
<a href="#terms" class="footer__link">Terms</a>
</footer>
</article>
</body>
</html>