-
Notifications
You must be signed in to change notification settings - Fork 1
/
services.html
97 lines (95 loc) · 4.54 KB
/
services.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
<!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="Page containing valuable information about LearnCodingFaster including our mission, goals and Discord Server">
<link rel="stylesheet" href="css/info_pages.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/style.css">
<script src="app/email_subscribe.js" defer></script>
<title>Services | 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 class="our-services-container">
<h1><u>Our Purpose</u></h1>
<div id="services-info">
<p>LearnCodingFaster provides people with the best <a href="videos.html">videos</a>, <a href="channels.html">channels</a>, <a href="courses.html">courses</a> and <a href="projects.html">projects</a> allowing people to teach themselves to code in the most efficient way possible.</p>
<p>I created LearnCodingFaster to help people avoid wasting time searching for tutorials, courses and projects by providing them with the best coding related recourses all grouped in one area so they can quickly find what they need and start learning right away.</p>
</div>
</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>
</html>