-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnews.html
More file actions
63 lines (54 loc) · 1.48 KB
/
Copy pathnews.html
File metadata and controls
63 lines (54 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>News</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EMWSZ0VDGG"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EMWSZ0VDGG');
</script>
</head>
<body>
<header>
<h1>News</h1>
</header>
<main>
<section id="products">
<div class="product">
<img src="images/logo.png" alt="Logo" width="150">
<h3>Gumroad</h3>
<p>News Via E-Mail from Gumroad</p>
<a href="https://freetimemaker.gumroad.com/subscribe">
<button>Subscibe on Gumroad</button>
</a>
</div>
<div class="product">
<img src="images/dis.png" alt="Discord" width="150">
<h3>Discord</h3>
<p>News on Discord</p>
<a href="https://discord.gg/zPFvwK9pNh">
<button>View on Discord</button>
</a>
</div>
<div class="product">
<img src="images/back.png" alt="Back" width="150">
<h3>Go Back</h3>
<p>Back to Start</p>
<a href="index.html">
<button>Go back to Start</button>
</a>
</div>
<footer>
© 2025 Freetime Maker
</footer>
</section>
</main>
</body>
</html>