-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 967 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LearnCodeOnline</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" />
</head>
<body class="bg-dark">
<div class="container bg-warning p-4">
<h1 class="text-center">LearnCodeOnline</h1>
<ul class="list-group">
<!-- <li class="list-group-item">
Javascript course<span class="float-right">$2.1</span>
</li> -->
</ul>
<div id="buttons">
<button type="button" class="btn btn-success btn-lg mt-4 mx-auto d-block sort-btn">
Sort courses
</button>
<button type="button" class="btn btn-primary btn-lg mt-4 mx-auto d-block sort-btn">
Reverse Sort
</button>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>