-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Media List App</title>
</head>
<body>
<h1 class="text-center p-5 bg-dark text-warning mb-0">Media List App</h1>
<section class="bg-dark p-5">
<div class="container">
<div class="row text-center">
<div class="col-md">
<a href="./categories/books.html">
<div class="card bg-info mb-2">
<h2 class="card-title p-4">
Books
</h2>
<div class="h1 pb-4">
<i class="bi bi-book"></i>
</div>
</div>
</a>
</div>
<div class="col-md">
<a href="./categories/songs.html">
<div class="card bg-success mb-2">
<h2 class="card-title p-4">
Songs
</h2>
<div class="h1 pb-4">
<i class="bi bi-disc"></i>
</div>
</div>
</a>
</div>
<div class="col-md">
<a href="./categories/movies.html">
<div class="card bg-info mb-2">
<h2 class="card-title p-4">
Movies
</h2>
<div class="h1 pb-4">
<i class="bi bi-film"></i>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section>
<div class="bg-dark text-warning text-center p-5">
<p>
Make a list of next books you want to read, the songs you want to listen to and the movies you want to watch.
<br>Gather in this application all those tips and suggestions you keep forgetting about, and never miss one again.
</p>
</div>
</section>
</body>
</html>