generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (116 loc) · 4.73 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
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
116
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<title>Easy Science</title>
<script src="script.js" defer></script>
</head>
<body>
<header>
<section class="social-network">
<ul>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#">Español</a></li>
</ul>
</section>
<nav>
<div class="logo"><a href="index.html"><strong>E</strong>asy <strong>S</strong>ience</a></div>
<div class="hamburger-menu"><i id="menu-button" class="fas fa-bars"></i></div>
<ul id="menu">
<li class="closeButtonContainer"><span id="closeButton">X</span></li>
<li><a class="Personal-information" href="about.html">About</a></li>
<li><a class="Personal-information" href="courses.html">Courses</a></li>
<li><a class="Personal-information" href="#contact">Contact</a></li>
<li><a class="Personal-information" href="#contact">Sponsor</a></li>
<li><a class="Personal-information" href="#contact">News</a></li>
<li><a class="Personal-information button sign-up" href="#">Sign up</a></li>
</ul>
</nav>
</header>
<main>
<section class="home-page">
<div class="home-text">
<p class="light-text">Welcome to our best platform yet!</p>
<h1>We teach science the right way</h1>
<p>We have the mission to provide a world-class education for anyone, anywhere.</p>
<h2>Join us for our live stream this Wednesday</h2>
<a class="button" href="courses.html">Start here</a>
</div>
</section>
<section id="about" class="about">
<h2>Find a comprehensive explanation for the subject you've been struggling with</h2>
<hr>
<div>
<ul>
<li>
<i class="fas fa-square-root-alt"></i>
<h3>Math</h3>
<p>From preschool to College, we'll got you cover with everything you need to achieve your goals!</p>
</li>
<li>
<i class="fas fa-atom"></i>
<h3>Physics</h3>
<p>From preschool to College, we'll got you cover with everything you need to achieve your goals!</p>
</li>
<li>
<i class="fas fa-flask"></i>
<h3>Chemistry</h3>
<p>From preschool to College, we'll got you cover with everything you need to achieve your goals!</p>
</li>
<li>
<i class="fas fa-university"></i>
<h3>College</h3>
<p>From preschool to College, we'll got you cover with everything you need to achieve your goals!</p>
</li>
<li>
<i class="fas fa-tools"></i>
<h3>Tools</h3>
<p>From preschool to College, we'll got you cover with everything you need to achieve your goals!</p>
</li>
</ul>
</div>
</section>
<section id="courses" class="courses-container">
<h1>Take a look at our most popular courses</h1>
<hr>
<section id="courses-wrap" class="courses">
<div class="button-container">
<a class="button show-more" href="#">Show more <i class="fas fa-arrow-down"></i></a>
<a class="button" href="courses.html">Find more courses <i class="fas fa-book-reader"></i></a>
</div>
</section>
</section>
<section id="contact" class="contact-container">
<div class="contact-text">
<h2>Need a tutor?</h2>
<p>Contact us for a personalized class</p>
<hr>
</div>
<div class="contact-form">
<form id="form" class="form" action="#" method="post">
<input type="text" id="name" name="user-name" placeholder="Full Name" required maxlength="30">
<input type="email" id="email" name="user-email" placeholder="Email Address" required>
<button id="button" class="button" type="submit">Get in Touch</button>
</form>
<p>or</p>
<a class="button" href="#">Sign up</a>
</div>
</section>
</main>
<footer>
<section class="author">
<div class="logo"><a href="index.html"><strong>E</strong>asy <strong>S</strong>ience</a></div>
<div>
<p>copyright© 2021 easyscience.com</p>
<p>All right reserved. <a href="https://github.com/carloshs1994">Designed by Carlos Herver Solano</a></p>
</div>
</section>
</footer>
</body>
</html>