-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-courses.html
105 lines (103 loc) · 3.82 KB
/
1-courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>holberton-smiling</title>
<!-- Custom and Font Styles -->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="font-style.css" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Coiny&display=swap"
rel="stylesheet"
/>
<!-- Bootstrap -->
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<!-- icons -->
<script src="https://use.fontawesome.com/7162430c1a.js"></script>
<link href="https://use.fontawesome.com/7162430c1a.css" media="all" rel="stylesheet">
</head>
<body class="body">
<header>
<section class="hero-courses-section pt-3 pb-1">
<div class="container">
<nav class="navbar navbar-expand-sm navbar-dark pt-4 px-0">
<button
class="navbar-toggler border-0 align-self-start mt-3"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-line1"></span>
<span class="navbar-line2 my-1"></span>
<span class="navbar-line3"></span>
</button>
<a
class="navbar-brand mx-auto d-flex flex-column flex-sm-row align-items-center mt-3"
href="#"
>
<img
src="images/smile_off.png"
alt="navbar-logo"
width="37px"
class="mr-4 mb-3 mb-sm-0 mr-sm-3 img-fluid"
/>
<img
src="images/logo.png"
alt="navbar-logo-text"
width="114px"
class="mr-4 img-fluid"
/>
</a>
<div class="collapse navbar-collapse text-center mt-3" id="navbarNav">
<ul class="navbar-nav ml-auto font-weight-bold">
<li class="nav-item">
<a class="nav-link text-white px-1" href="#">COURSES</a>
</li>
<li class="nav-item px-0 px-sm-5 py-2 py-sm-0">
<a class="nav-link text-white px-1" href="#">PRICING</a>
</li>
<li class="nav-item">
<a class="nav-link text-white px-1" href="#">LOGIN</a>
</li>
</ul>
</div>
</nav>
<div class="container mt-3">
<h3 class="title-courses my-3">« Don’t cry because it’s over.<br> <span class="purple-text">Smile</span> because it happened. »</h3>
</div>
</div>
</section>
</header>
</main>
</body>
</html>