-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 1.96 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ix's Technical Book Reviews</title>
<script defer src="script.js"></script>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Ix's Technical Book Reviews</h1>
<nav class="navigation">
<ul>
<li id="nav-el-1"><a href="#home">Home</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#browse">Browse</a></li>
<li><a href="#contact-form">Contact</a></li>
</ul>
</nav>
<main>
<div class="featured">
<!-- Main featured book -->
<section id="home">
<img
id="featured-book"
class="book-cover"
src="image/build_a_llm.png"
alt="Build a LLM Book Cover"
/>
<h3>Build a Large Language Model</h3>
<h4>by Sebastian Raschka</h4>
<p>
A practical, hands-on guide to understanding and building large
language models from scratch.
</p>
</section>
<!-- Other books -->
<aside id="reviews">
<h3>More Reviews</h3>
<ul>
<li>
<img
src="image/eloquent_js.png"
alt="Eloquent JavaScript Book Cover"
/>
</li>
<li>
<img
src="image/you_dont_know_js.png"
alt="You Don't Know JS Book Cover"
/>
</li>
<li>
<img src="image/statquest.png" alt="StatQuest Book Cover" />
</li>
<li>
<img
src="image/automate_boring_stuff.png"
alt="Automate the Boring Stuff Book Cover"
/>
</li>
</ul>
</aside>
</div>
</main>
<footer>Ix © 2026 WebDev Workshop</footer>
</body>
</html>