-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
139 lines (139 loc) · 4.56 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<!-- Settings of the HTML document -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Progate</title>
<link rel="stylesheet" href="stylesheet.css" />
<link rel="stylesheet" href="responsive.css" />
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-left">
<img
class="logo"
src="https://prog-8.com/images/html/advanced/main_logo.png"
/>
</div>
<span class="fa fa-bars menu-icon"></span>
<div class="header-right">
<a href="#">Lessons</a>
<a href="#" class="login">Log in</a>
</div>
</div>
</header>
<!-- Top -->
<div class="top-wrapper">
<div class="container">
<h1>LEARN TO CODE.</h1>
<h1>LEARN TO BE CREATIVE.</h1>
<p>Progate is a web service where you can learn programming online.</p>
<p>
We offer you a fully equipped coding environment to get you started.
</p>
<div class="btn-wrapper">
<a href="#" class="btn signup">Sign up with Email</a>
<p>or</p>
<a href="#" class="btn facebook"
><span class="fa fa-facebook"></span>Sign up with Facebook</a
>
<a href="#" class="btn twitter"
><span class="fa fa-twitter"></span>Sign up with Twitter</a
>
</div>
</div>
</div>
<!-- Sign up modal -->
<div class="signup-modal-wrapper" id="signup-modal">
<div class="modal">
<div class="close-modal">
<i class="fa fa-2x fa-times">×</i>
</div>
<div id="signup-form">
<h2>Sign up with email</h2>
<form action="#">
<input class="form-control" type="text" placeholder="Email" />
<input
class="form-control"
type="password"
placeholder="Password"
/>
<div id="submit-btn">Sign up</div>
</form>
</div>
</div>
</div>
<!-- Lesson -->
<div class="lesson-wrapper">
<div class="container">
<div class="heading">
<h2>Learn Where to Get Started!</h2>
</div>
<div class="lessons">
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/html.png" />
<p>HTML & CSS</p>
</div>
<p class="text-contents">
Languages used to build and design the appearances of your
websites. HTML adds the structure, and CSS styles it.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/jQuery.png" />
<p>jQuery</p>
</div>
<p class="text-contents">
A fast, feature-rich and easy-to-use JavaScript library that
handles animations and Ajax requests.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/ruby.png" />
<p>Ruby</p>
</div>
<p class="text-contents">
A dynamic, general-purpose language that is simple and productive.
It is commonly used around the world to build web applications.
</p>
</div>
<div class="lesson">
<div class="lesson-icon">
<img src="https://prog-8.com/images/html/advanced/php.png" />
<p>PHP</p>
</div>
<p class="text-contents">
An open source scripting language that can be embedded into HTML,
and well suited for web development.
</p>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<!-- Message -->
<div class="message-wrapper">
<div class="container">
<div class="heading">
<h2>Ready to become an awesome programmer?</h2>
<h3>Let's learn to code, learn to be creative!</h3>
</div>
<span class="btn message">Start Learning</span>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<img src="https://prog-8.com/images/html/advanced/footer_logo.png" />
<p>Learn to code, learn to be creative.</p>
</div>
<script type="text/javascript" src="script.js"></script>
</footer>
</body>
</html>