-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
79 lines (77 loc) · 3.31 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
<!DOCTYPE html>
<html lang="de-DE" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<title>Exclusives Empire - News</title>
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon.png">
<link rel="stylesheet" type="text/css" href="css/normalize.min.css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/flexboxgrid.css" media="all" />
<link rel="stylesheet" type="text/css" href="css/theme.css" media="all" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header class="fade-in">
<div class="navigation-bar flex middle-xs">
<img src="img/eclogo.png" class="logo">
<nav class="end-xs">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/client-area.html">Membership</a></li>
<li><a href="/child-orgs.html">Child Organizations</a></li>
<li><a href="/news.html">News</a></li>
</ul>
</nav>
</div>
<div class="hero flex middle-xs" style="background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('img/hero-image.jpg');">
<div class="hero-text">
<h1>News</h1>
<h4>See all our updates in HD !</h4>
</div>
</div>
</header>
<div class="wrapper">
<main>
<section class="news" id="news">
<div class="container">
<div class="row">
<div class="col-md center-xs">
<h2 class="section-title">Latest News</h2>
</div>
</div>
<div class="row news-frames">
<div class="col-md-4 news-frame">
<div class="news-frame-content">
<h3>Rebrand</h3>
<p>EC, Exclusives Club is rebranded to Exclusives Empire.</p>
</div>
</div>
<div class="col-md-4 news-frame">
<div class="news-frame-content">
<h3>Exclusive Hosting</h3>
<p>We are excited to announce the opening of Exclusive Hosting ! Do you need free hosting ? Now you can, We offer resources for all your projects, Join the membership for more upgrades ! </p>
</div>
</div>
<div class="col-md-4 news-frame">
<div class="news-frame-content">
<h3>Soon</h3>
<p>Soon.</p>
</div>
</div>
</div>
</div>
</section>
</main>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-md-6">
<p>© 2024 Exclusives Empire. All rights reserved.</p>
</div>
<div class="col-md-6 end-xs">
</div>
</div>
</footer>
</body>
</html>