forked from Mrlhz/docsify-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (46 loc) · 1.43 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
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ONLINE BOOKS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="my.css">
</head>
<body>
<!-- MAIN (Center website) -->
<div class="main">
<h1>ONLINE BOOKS</h1>
<hr>
<h2>BOOKSHELF</h2>
<div id="myBtnContainer">
<button class="btn active" onclick="filterSelection('all')"> Show all</button>
<button class="btn" onclick="filterSelection('program')"> Program</button>
<button class="btn" onclick="filterSelection('fiction')"> Fiction</button>
</div>
<!-- Portfolio Gallery Grid -->
<div class="row">
<div class="column fiction">
<div class="card" onclick="location.href='docs';">
<img src="docs/_media/cover.png" alt="Mountains" style="width:100%">
<div class="container">
<h4>山河已秋</h4>
<p>Lorem ipsum dolor..</p>
</div>
</div>
</div>
<div class="column program">
<div class="card" onclick="location.href='coding-interviews';">
<img src="coding-interviews/_media/cover.jpg" alt="Lights" style="width:100%">
<div class="container">
<h4>还没想好名字呢</h4>
<p>Lorem ipsum dolor..</p>
</div>
</div>
</div>
<!-- END GRID -->
</div>
<!-- END MAIN -->
</div>
<script src="my.js"></script>
</body>
</html>