-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (132 loc) · 4.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omega News</title>
<style>
body {
background-color: #071017;
color: #6aebf7ff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
position: relative;
}
header {
text-align: center;
padding: 20px;
position: relative;
z-index: 1;
}
nav {
display: inline-block;
position: relative;
z-index: 1;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
color: #6aebf7ff;
text-decoration: none;
padding: 8px 12px;
border: 2px solid #6aebf7ff;
border-radius: 5px;
transition: all 0.3s ease;
}
nav a:hover {
background-color: #6aebf7ff;
color: #071017;
}
.main-content {
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
position: relative;
z-index: 1;
}
.article {
margin-bottom: 40px;
border: 2px solid #6aebf7ff;
padding: 20px;
border-radius: 10px;
position: relative;
z-index: 1;
}
.article img {
max-width: 100%;
height: auto;
display: block;
margin-bottom: 10px;
border-radius: 5px;
}
.article h2 {
margin-top: 0;
font-weight: bold;
}
/* Vintage Effect */
</style>
</head>
<body>
<header>
<h1>Omega News</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Agenda</a></li>
<li><a href="#">Join Us</a></li>
</ul>
</nav>
</header>
<div class="main-content">
<div class="article">
<a href="article1.html"><img src="article1_image.jpg" alt="Article 1 Image"></a>
<h2><a href="article1.html">Introducing Omega News</a></h2>
<p>Omega Communist Party</p>
<p>The Great Omega Communist Party has brought to you A "People's Media" News Portal,
Made by the People, For the People, But the people are oppressed! The News Portal will be
managed by the Government, focusing on News from within the empire and elsewhere...</p>
</div>
<!-- Repeat for other articles -->
<div class="article">
<a href="article2.html"><img src="article2_image.jpg" alt="Article 2 Image"></a>
<h2><a href="article2.html">Omega Communist Party fully Established</a></h2>
<p>Omega Communist Party</p>
<p>Today marks a new day, a new Era for the Omega Empire, As a People's Party has been formed into
The Omega Communist Party, All in favour of the people and the military, Led by our Glorious Prime Minister
Ilum, Previusly Chancellor, Royal Guard, Special Forces Troop, Military Junta Leader and Omega Fluffy Commune
Chairman, Who's wielding the Political Power of the Empire with an Iron Fist! Focuses on Internationalism...</p>
</div>
<div class="article">
<a href="article3.html"><img src="article3_image.jpg" alt="Article 3 Image"></a>
<h2><a href="article3.html">HXR HAS FALLEN, again...</a></h2>
<p>Omega Communist Party</p>
<p>You heard that right! HXR has fallen once again after being nuked as it was attempting to reunite forcefully with
its' nationstates, Unfortunately we don't know who or what nuked them again, But we are Actively searching for their remnants to
get rid of them, and EXTERMINATE THOSE SCUM COMPLETELY!-...</p>
</div>
<div class="article">
<a href="article4.html"><img src="article4_image.jpg" alt="Article 4 Image"></a>
<h2><a href="article4.html">United Forever! In Friendship and labour!</a></h2>
<p>Omega Communist Party</p>
<p>A triple alliance has been formed between the Great Phox Empire, The Omega Empire, And the Orlandball Empire,
Who knows what will this entail, a world war? A Superpower clan? Or a Fortress for Minority communities?...</p>
</div>
<div class="article">
<a href="article5.html"><img src="article5_image.jpg" alt="Article 5 Image"></a>
<h2><a href="article5.html">New Allies, New Enemies!</a></h2>
<p>Omega Communist Party</p>
<p>Today we have formed an Alliance with the infamous Mediana Islands and PMC Blackfox, to aid us in our conflict with
HXR and their allies, Hopefully alliance will make us stronger then ever, Overcoming any revolution or enemy coming our way!
With us Allied with Blackfox a new Secretive Raiding Battalion has been formed which is not part of the Military and is....</p>
</div>
</div>
</body>
</html>