-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (76 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>codebrainery</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<header class="container">
<div id="header" class="row">
<h1 id="header-logo" class="col-sm-8">Codebrainery.io</h1>
<nav id="nav-bar" class="col-sm-4">
<p class="pill-white"> <a href="#">Sign In</a> </p>
<p class="pill-black"> <a href="#">Sign Up</a> </p>
<p class="pill-white"> <a href="#">About</a> </p>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="container">
<div class="row text-center">
<h2><a href="#">New Course Release</a></h2>
<h3>Build a Website</h3>
</div>
</div>
</section>
<section class="container">
<div class="row">
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/ruby.png">
</figure>
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/javascript.png">
</figure>
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/mysql.png">
</figure>
</div>
<div class="row">
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/php.png">
</figure>
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/jquery.png">
</figure>
<figure class="col-sm-4">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/python.png">
</figure>
</div>
</section>
<div class="row text-center">
<a class="btn btn-primary" href="#">View All Courses</a>
</div>
<footer class="container">
<div class="row">
<p class="col-sm-4">©codebrainery.io</p>
<ul id="social-media-icons">
<li class="col-sm-1">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/facebook-grey.svg">
</li>
<li class="col-sm-1">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/twitter-grey.svg">
</li>
<li class="col-sm-1">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/instagram-grey.svg">
</li>
<li class="col-sm-1">
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/medium-grey.svg">
</li>
</ul>
</div>
</footer>
</body>
</html>