forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 2.88 KB
/
index.html
File metadata and controls
71 lines (68 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<h1>My Bookshelf</h1>
<p>Welcome to my book collection. Explore the world of literature through these handpicked recommendations.</p>
</header>
<main>
<section class="articles">
<article class="article">
<h2>The Great Gatsby</h2>
<img src="gatsby.jpg" alt="The Great Gatsby">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/book1">Read</a>
</article>
<article class="article">
<h2>Pride and Prejudice</h2>
<img src="pride_prejudice.jpg" alt="Pride and Prejudice">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/book2">Read</a>
</article>
<article class="article">
<h2>To Kill a Mockingbird</h2>
<img src="mockingbird.jpg" alt="To Kill a Mockingbird">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/book3">Read more</a>
</article>
<article class="article">
<h2>New Book 1</h2>
<img src="new_book1.jpg" alt="New Book 1">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/newbook1">Read</a>
</article>
<article class="article">
<h2>New Book 2</h2>
<img src="new_book2.jpg" alt="New Book 2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/newbook2">Read</a>
</article>
<article class="article">
<h2>New Book 3</h2>
<img src="new_book2.jpg" alt="New Book 2">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin volutpat quam vitae felis dictum, ac pulvinar felis mattis.</p>
<a href="https://www.example.com/newbook2">Read</a>
</article>
<!-- Add more articles as needed -->
</section>
</main>
<footer>
<p> Created by Hussein Bahdon | 2023</p>
</footer>
</body>
</html>