-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>LYeb</title>
</head>
<body>
<header class="top-header">
<img src="images/LY.jpg" alt="Logo" class="logo">
<h1 class="header-title">Here, I Create</h1>
</header>
<div class="article-container">
<table class="article-table">
<tr>
<td>
<div class="article-card" onclick="openArticle('article5.html')">
<img src="Art/Billich-HomagetoDali-Master-33x33w36x36border.webp" alt="Article Cover 4"
class="article-cover">
<h2 class="article-title">Evolutionary Connection 1</h2>
</div>
</td>
<td>
<div class="article-card" onclick="openArticle('article4.html')">
<img src="images/jazz.jpg" alt="Article Cover 4" class="article-cover">
<h2 class="article-title">Just Some Random Thoughts</h2>
</div>
</td>
<td>
<div class="article-card" onclick="openArticle('article3.html')">
<img src="Art/Jozef_Rapacki_-_Zaduma_1892.jpg" alt="Article Cover 3" class="article-cover">
<h2 class="article-title">Reflections on an Autumn Day</h2>
</div>
</td>
<td>
<div class="article-card" onclick="openArticle('myFirstPage.html')">
<img src="images/JPG.jpg" alt="StickLynn" class="article-cover">
<h2 class="article-title">Who's Lynn? (My First Page)</h2>
</div>
</td>
</tr>
<tr>
<td>
<div class="article-card" onclick="openArticle('article2.html')">
<img src="Art/Carl Spitzweg - Der arme Poet (Neue Pinakothek).jpg" alt="Article Cover 2"
class="article-cover">
<h2 class="article-title">Detoxification Program</h2>
</div>
</td>
<td>
<div class="article-card" onclick="openArticle('article1.html')">
<img src="Art/Sascha_Schneider_-_Der_Chodem.jpg" alt="Article Cover 1" class="article-cover">
<h2 class="article-title">On Writers, Pain, and “The Self”</h2>
</div>
</td>
<td></td>
<td></td>
</tr>
</table>
</div>
<script src="script.js"></script>
</body>
</html>