-
Notifications
You must be signed in to change notification settings - Fork 1
/
videos.html
115 lines (113 loc) · 5.18 KB
/
videos.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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">
<meta name="description" content="The best Youtube videos related to computer programming to learn topics easily and quickly.">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/popup.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/style.css">
<script src="app/email_subscribe.js" defer></script>
<title>Videos | LearnCodingFaster</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
<div class="full-page-container">
<header id="header">
<nav id="nav-bar">
<div class="logo-container">
<img src="images/learncodingfaster.png" alt="logo" class="logo">
<span class="website-name">LearnCodingFaster</span>
</div>
<ul class="nav-links">
<li><a href="/" class="nav-link">Home</a></li>
<li><a href="/videos.html" class="nav-link">Videos</a></li>
<li><a href="/channels.html" class="nav-link">Channels</a></li>
<li><a href="/courses.html" class="nav-link">Courses</a></li>
<li><a href="/projects.html" class="nav-link">Projects</a></li>
</ul>
</nav>
</header>
<main>
<div id="videos-page" class="main-container">
<section class="video-section">
<h2 class="video-section-title">
Best YouTube Videos
</h2>
</section>
<section class="newsletter-section">
<h1 class="newsletter-title">Newsletter</h1>
<div class="newsletter-details-div">
<h2 class="newsletter-description">Subscribe to our newsletter to receive exclusive Coding Projects, Lessons and Courses to help you learn to code as fast as possible.</h2>
</div>
<form action="https://app.convertkit.com/forms/3805794/subscriptions" class="seva-form formkit-form" method="post" data-sv-form="3805794" data-uid="e6ea1f37b9" data-format="inline" data-version="5" target="_blank" id="email-form">
<div class="wrapper">
<input type="checkbox" id="click">
<label class="btn-1" for="click">Subscribe</label>
<div class="field">
<input name="email_address" aria-label="Email Address" placeholder="Email Address" required="" type="email" autocomplete="off">
<label for="click" class="btn-2" onclick="submitEmail()">Subscribe</label>
</div>
</div>
</form>
</section>
</div>
</main>
<footer class="footer">
<div class="footer-container">
<div class="footer-row">
<div class="footer-col">
<div class="footer-col-content">
<h4>Company</h4>
<ul>
<li><a href="/about.html">about us</a></li>
<li><a href="/services.html">our services</a></li>
</ul>
</div>
</div>
<div class="footer-col">
<div class="footer-col-content">
<h4>Useful Links</h4>
<ul>
<li><a href="/questions.html">FAQ's</a></li>
<li><a href="https://discord.com/invite/d8FvDkBKDy">discord</a></li>
<li><a href="/contact.html">contact</a></li>
</ul>
</div>
</div>
<div class="footer-col">
<div class="footer-col-content">
<h4>Navigation</h4>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="videos.html">videos</a></li>
<li><a href="channels.html">channels</a></li>
<li><a href="courses.html">courses</a></li>
<li><a href="projects.html">projects</a></li>
</ul>
</div>
</div>
<div class="footer-col">
<div class="footer-col-content">
<h4>Newsletter</h4>
<form action="https://app.convertkit.com/forms/3805794/subscriptions" class="seva-form formkit-form" method="post" data-sv-form="3805794" data-uid="e6ea1f37b9" data-format="inline" data-version="5" id="footer-form" target="_blank">
<div class="footer-email-wrapper">
<div class="footer-email-field">
<input class="footer-email-input" name="email_address" aria-label="Email Address" placeholder="Email Address" required="" type="email">
<button class="footer-email-btn">Subscribe</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
<script src="app/app.js" defer>
</script>
</html>