-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreminiscence.html
56 lines (49 loc) · 2.48 KB
/
reminiscence.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
<!-- articles/poems/any form of written media will go here -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/logos/indigologowhite.png">
<title>Indigo Magazine - Reminiscence Issue </title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<script src="scripts/script.js"></script>
</head>
<body>
<!-- Button for Light/Dark Mode -->
<button onclick="changeColor()" class="change-mode"> ☼ / ☾</button>
<div class="Taskbar-container" id="Taskbar-container">
<!-- Logo on the left side, linking to the homepage -->
<a href="index.html" class="logo-link">
<img src="assets/logos/indigologowhite.png" alt="Website Logo" class="logo">
</a>
<!-- Navigation links -->
<a href="creative.html" class="link-bar hvr-fade CREATIVE"><p class="tabfont">CREATIVE</p></a>
<a href="visualarts.html" class="link-bar hvr-fade VISUALARTS"><p class="tabfont">VISUAL ARTS</p></a>
<a href="about.html" class="link-bar hvr-fade ABOUT"><p class="tabfont">ABOUT</p></a>
</div>
<div class="articles-container">
<a href="articles/reminiscence/amsterdam.html" class="article">
<img src="article photos/amsterdam/amsterdamfinal.jpeg" alt="Article 1 Cover">
<div class="article-title">Amsterdam</div>
</a>
<a href="articles/reminiscence/helovesme.html" class="article">
<img src="article photos/helovesme/final2.jpg" alt="Article 2 Cover">
<div class="article-title">He Loves Me, He Loves Me Not</div>
</a>
<a href="articles/reminiscence/therestaurant.html" class="article">
<img src="article photos/therestaurant/rem3.png" alt="Article 3 Cover">
<div class="article-title">The Restaurant</div>
</a>
<a href="articles/reminiscence/yaknowwhatimiss.html" class="article">
<img src="article photos/group 3/ya_know_what_i_miss.png" alt="Article 4 Cover">
<div class="article-title">ya know what i miss</div>
</a>
<a href="articles/reminiscence/yoursandmine.html" class="article">
<img src="article photos/yoursandmine/camerafinal.png" alt="Article 5 Cover">
<div class="article-title">Yours and mine</div>
</a>
</div>