-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
52 lines (49 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/x-icon;base64,AA" />
<meta name="viewport" content="width=device-width" />
<title>algebra</title>
<meta
name="description"
content="means completeness and balancing, from the Arabic word الجبر"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<main>
<h1>algebra</h1>
<blockquote>
means completeness and balancing, from the Arabic word الجبر
</blockquote>
<ul>
<li>
<a href="./examples/set.html">sets</a>
</li>
</ul>
<p>Books that inspired me.</p>
<style>
.books {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 1em;
}
@media only screen and (max-width: 456px) {
.books {
flex-direction: column;
flex-wrap: nowrap;
}
}
</style>
<div class="books">
<img src="./images/Cover-Algebra.png" alt="Algebra book" />
<img
src="./images/Cover-OnQuaternionsAndOctonions.png"
alt="Quaternion and Octonion book"
/>
</div>
</main>
</body>
</html>