-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.04 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
<!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="stylesheet" href="index.css">
<title>book website</title>
<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=Concert+One&display=swap" rel="stylesheet">
</head>
<body>
<header class="navigation">
<span class="navigationtext"><a href="index.html">Awesome Books</a></span>
<nav class="navbar">
<ul class="navlist">
<li class="navitem list">List</li>
<span class="navline">|</span>
<li class="navitem adding">Add new</li>
<span class="navline">|</span>
<li class="navitem cont">Contact</li>
</ul>
</nav>
</header>
<main class="container">
<span class="datetime">insert date</span><br>
<div class="Pagetitle">
<h1 class="titletext"></h1>
</div>
<section class="form">
<input type="text" class="title formInput" placeholder="title" required><br>
<input type="text" class="author formInput" placeholder="author" required><br>
<button class="add">Add</button>
</section>
<section class="contact">
<p class="contquestion">Do you have any questions or you just want to say "Hello"?</p>
<span class="underquestion">You can reach out to us!</span>
<ul class="contanswers">
<li class="answer">Our email: Awesomebooks@gmail.com</li>
<li class="answer">Our phone number:+004 358 642 200</li>
<li class="answer">Our Address:Streetname 22,844st awesomebooks country</li>
</ul>
</section>
</main>
<section class="copyright">
<span class="copytext">Copyright ...</span>
</section>
<footer>
<section class="acfooter">
</section>
</footer>
<script type="module" src="index.js"></script>
<script src="./node_modules/luxon/build/global/luxon.min.js"></script>
</body>
</html>