-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (151 loc) · 5.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link rel="icon" href="img/favicon-16x16.png" />
<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=Roboto:ital,wght@0,300;0,500;0,700;1,400&display=swap"
rel="stylesheet"
/>
<title>Backstage Talks Magazine</title>
</head>
<body>
<header>
<img src="img/logo.png" alt="logo" class="logo" />
</header>
<div class="section-container">
<section class="issue color-correction1" id="issue6" data-color ="#fff">
<img
src="img/backstagetalks_cover_issue_6.png"
alt="issue6"
class="issue__img"
/>
<p class="issue__number">Issue #6</p>
<a
href="https://brot.sk/products/backstage-talks-issue-6?_pos=2&_sid=1c5730cc8&_ss=r"
class="issue__purchase"
>BUY HERE</a
>
<p class="issue__store">
or in
<a href="http://backstagetalks.com/stocklist.php">selected stores</a>.
</p>
</section>
<section class="issue" id="issue5" data-color ="#00c1b5">
<img
src="img/backstagetalks_cover_issue_5.png"
alt="issue5"
class="issue__img"
/>
<p class="issue__number">Issue #5</p>
<a
href="https://brot.sk/products/backstage-talks-5?_pos=3&_sid=1c5730cc8&_ss=r"
class="issue__purchase"
>BUY HERE</a
>
<p class="issue__store">
or in
<a href="http://backstagetalks.com/stocklist.php" id="selected-stores">selected stores</a>.
</p>
</section>
<section class="issue" id="issue4" data-color ="#ff651a">
<img
src="img/backstagetalks_cover_issue_4.png"
alt="issue5"
class="issue__img"
/>
<p class="issue__number">Issue #4 is sold out.</p>
<p class="issue__store">
If you are lucky, you may get the last pieces in
<a href="http://backstagetalks.com/stocklist.php" id="selected-stores"> selected stores</a
>.
</p>
</section>
<section class="issue" id="issue3" data-color="#ffbe00">
<img
src="img/backstagetalks_cover_issue_3.png"
alt="issue5"
class="issue__img"
/>
<p class="issue__number">Issue #3</p>
<a
href="https://brot.sk/products/backstage-talks-3?_pos=4&_sid=1c5730cc8&_ss=r"
class="issue__purchase"
>BUY HERE</a
>
<p class="issue__store">
or in
<a href="http://backstagetalks.com/stocklist.php" id="selected-stores">selected stores</a>.
</p>
</section>
<section class="issue" id="issue2" data-color="#1d3fbb">
<img
src="img/backstagetalks_cover_issue_2.png"
alt="issue5"
class="issue__img"
/>
<p class="issue__number">Issue #2</p>
<a
href="https://brot.sk/products/backstage-talks-2?_pos=1&_sid=1c5730cc8&_ss=r"
class="issue__purchase"
>BUY HERE</a
>
<p class="issue__store">
or in
<a href="http://backstagetalks.com/stocklist.php" id="selected-stores">selected stores</a>.
</p>
</section>
<section class="issue" id="issue1" data-color="#e30512">
<img
src="img/backstagetalks_cover_issue_1.png"
alt="issue5"
class="issue__img"
/>
<p class="issue__number">Issue #1 is sold out.</p>
<p class="issue__store">
If you are lucky, you may get the last pieces in
<a href="http://backstagetalks.com/stocklist.php" id="selected-stores">selected stores</a>.
</p>
</section>
</div>
<footer class="footer">
<p class="footer__p">
Backstage Talks is a magazine of casual, but in depth dialogues on
design and business. Our decisions shape and influence this complex
world—to have a chance to make the right ones, we need to talk
</p>
<p class="footer__copyright">
© 2023
<span class="underline"
><a href="http://milk.sk/">Published by studio Milk</a>
</span>
</p>
<div class="footer__contact">
<a href="https://backstagetalks.com/privacy-policy.php" class="privacy"
>Privacy Policy</a
>
</div>
</footer>
<div class="email">
<a href="[email protected]" class="address"
>
</div>
<div class="issue-reference">
<ul>
<li><a href="#issue6" id="issue-ref">Issue #6</a></li>
<li><a href="#issue5" id="issue-ref">Issue #5</a></li>
<li><a href="#issue4" id="issue-ref">Issue #4</a></li>
<li><a href="#issue3" id="issue-ref">Issue #3</a></li>
<li><a href="#issue2" id="issue-ref">Issue #2</a></li>
<li><a href="#issue1" id="issue-ref">Issue #1</a></li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>