-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (80 loc) · 2.67 KB
/
index.html
File metadata and controls
82 lines (80 loc) · 2.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online books Website - Home</title>
<link rel="stylesheet" href="ncss.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="login4.html">Login</a></li>
<li><a href="signup4.html">Sign Up</a></li>
<li><a href="index.html">Books</a></li>
<li><a href="about4.html">About</a></li>
<li><a href="contact4.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="Books">
<h1>Welcome to open library</h1>
<p>Discover and explore your favorite books.</p>
</section>
<section class="Movie Songs">
<h2>Popular Books</h2>
<div class="movie-grid">
<div class="Album">
<img src="I don't love you anymore.jpg" alt="Movie Songs1" />
<h3>I don't love you anymore</h3>
</div>
<div class="Album">
<img src="Charlotte's Web.jpg" alt="Movie Songs2" />
<h3>Charlotte's Web</h3>
</div>
<div class="Album">
<img src="A Court of Mist and Fury.jpg" alt="Movie 3" />
<h3>A Court of Mist and Fury</h3>
</div>
<div class="Album">
<img src="Gaudy night.jpg" alt="Movie 4" />
<h3>Gaudy night</h3>
</div>
<div class="Album">
<img src="Black Sun.jpg" alt="Movie 5" />
<h3>Black Sun</h3>
</div>
<div class="Album">
<img src="And still we rise.jpg" alt="Movie 6" />
<h3>And still we rise</h3>
</div>
<div class="Album">
<img src="The gardens of China.jpg" alt="Movie 7" />
<h3>The gardens of China</h3>
</div>
<div class="Album">
<img src="The Three Frilly Goats Fluff.jpg" alt="Movie 8" />
<h3>The Three Frilly Goats Fluff</h3>
</div>
<div class="Album">
<img src="Learning Responsive Web Design.jpg" alt="Movie 9" />
<h3>Learning Responsive Web Design</h3>
</div>
<div class="Album">
<img src="The Scottish nation.jpg" alt="Movie 10" />
<h3>The Scottish nation</h3>
</div>
<div class="Album">
<img src="Chemistry.jpg" alt="Movie 11" />
<h3>Chemistry</h3>
</div>
<div class="Album">
<img src="Bravery.jpg" alt="Movie 12" />
<h3>Bravery</h3>
</div>
</div>
</section>
</body>
</html>