-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (100 loc) · 4.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Progate</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="stylesheet" type="text/css" href="responsive.css">
<link rel="shortcut icon" href="favicon.ico" >
<!-- ┬ ┬┌─┐ ┌─┐┬─┐┌─┐ -->
<!-- │││├┤ ├─┤├┬┘├┤ -->
<!-- └┴┘└─┘ ┴ ┴┴└─└─┘ -->
<!-- ╔═╗╦═╗╔═╗╔═╗╔═╗╔╦╗╔═╗ -->
<!-- ╠═╝╠╦╝║ ║║ ╦╠═╣ ║ ║╣ -->
<!-- ╩ ╩╚═╚═╝╚═╝╩ ╩ ╩ ╚═╝ -->
</head>
<body>
<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="#">Sign in</a>
<a href="#" class="login">Log in</a>
</div>
</div>
</header>
<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>
<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>
<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>
<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>
</footer>
</body>
</html>