This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
83 lines (75 loc) · 3.69 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>News</title>
<script src="code.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Playpen+Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
</head>
<body onLoad="onLoad()">
<div class="page-select">
<div class="toggleTheme">
<button onClick="toggleTheme()">
<img src="images/moonIcon.png" alt="" id="sunIcon">
<img src="images/sunIcon.png" alt="" id="moonIcon">
</button>
</div>
<div class="half-select">
<form action="index.html">
<button type="submit" class="select-button fadeDown">
<div class="centered-text">
<p class="select-button-text">Home</p>
</div>
</button>
</form><!--
--><form action="projects.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 0.5s;">
<div class="centered-text">
<p class="select-button-text">Projects</p>
</div>
</button>
</form><!--
--><form action="news.html">
<button type="submit" class="select-button fadeDown" style="animation-delay: 1s;">
<div class="centered-text">
<p class="select-button-text">News</p>
</div>
</button>
</form>
</div>
</div>
<div class="green-text">
<div class="fade-in-row">
<h1>Here I'll post news.</h1>
</div>
<div class="fade-in-row">
<h1>Date is DD/MM/YYYY</h1>
</div>
<div class="fade-in-row">
<div class="news">
<div class="title"><h1>Jani Nykänen released "One last adventure"</h1></div>
<div class="text"><h2>Another banger metroidvania by Jani Nykänen! I got a bit confused at start, but after I found where I had to go I beat rest pretty quick! Go and play it at <a href="https://jani-nykanen.itch.io/one-last-adventure">https://jani-nykanen.itch.io/one-last-adventure</a> now!!</h2></div>
<div class="date">08/11/2023</div>
</div>
</div>
<div class="fade-in-row">
<div class="news">
<div class="title"><h1>Trashovania Dzhake's mod released</h1></div>
<div class="text"><h2>A few days ago I discovered "trash engine". <br>It's small but good.<br>It's creator also made one game on it "Trashovania"<br>I spent whole day modifying it, and I think the result is pretty good.<br>I'll update it later, because I<br> asked developer how to make global variable<br> but she didn't answer yet.<br>Now I need to add one more project to projects xD</h2></div>
<div class="date">05/11/2023</div>
</div>
</div>
<div class="fade-in-row">
<div class="news">
<div class="title"><h1>News Created</h1></div>
<div class="text"><h2>Today I made this page :D <br> I hope you like it!<br> I'll try to post news when something happens or when I'm bored</h2></div>
<div class="date">04/11/2023</div>
</div>
</div>
</div>
</body>
</html>