-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.31 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
<!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">
<title>Library App</title>
<meta name="author" content="Harmeet Matharoo">
<link rel="icon" sizes="32x32" href="images/book-icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container-div">
<div class="welcome-page">
<div class="welcome-img-div">
<img src="images/Mandala-min.png" alt="book">
</div>
<div class="title-div">
<h1>Library</h1>
</div>
<div class="app-info-div">
<p>Your thoughts about a book, a reading recommendation and book collection.</p>
</div>
<div class="get-started-div">
<a href="page_2.html" id="get-started-button">Get Started</a>
</div>
</div>
</div>
<!-- <script src="script.js"></script> -->
</body>
</html>