-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (67 loc) · 4.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Martian Design Playground</title>
<!-- Google font -->
<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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div id="popup-message">
<div class="popup-content">
<span class="close-button" onclick="closePopup()">×</span>
<p>Error 403: Martian Membership Required. Humans may not request temporary access. This site is not suitable for anyone. 😤</p>
<p>Seriously, it's private. Look, just trust us: You don't want in here. It's not that interesting – just highly sensitive Martian stuff you wouldn't understand.</p>
</div>
</div>
<!-- ==============
Nav Menu Start
============== -->
<!-- Load an icon library for the hamburger menu icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Top Navigation Menu -->
<div class="topnav">
<a href="#home" class="active">Home</a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<a href="#news">News</a>
<a href="about.html">About</a>
</div>
<!-- Hamburger menu icon to toggle the navigation links -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- ============
Nav Menu End
============ -->
<section class="container">
<div class="item item-1"><h1>The Hyntelmig Post: The Voice of the Crater Town</h1></div>
<div class="item"><img src="IMG_8888.webp" alt="A Martian family - posing for a photo">
</div>
<div class="item">
<h2>Nestled beneath the sands of ancient craters lies the tranquil town of Hyntelmig</h2>
<p><time datetime="2024-02-13">February 13, 2024</time></p>
<p>Unlike the gleaming domes of human settlements, Hyntelmig blends seamlessly with the Martian landscape. Elegant structures shimmer with iridescent colors, echoing the ever-shifting dunes. Here, our people, the Mardunctikabonian, have thrived for countless millennia. Our forms may seem strange to human eyes – shimmering tendrils, multifaceted eyes, a way of communicating through color and subtle bioluminescence. But we are a gentle people, valuing knowledge and harmony above all else.</p>
<p>With our advanced technology subtly interwoven with the natural world, our way of life surpasses any in the Milky Way. Crime is a foreign concept, and kindness is our second nature. Our beloved companions, the ethereal wisplitters, flit by our sides – playful creatures capable of weaving illusions and soothing emotions.</p>
<p>Though content, a sliver of worry has seeped into our collective consciousness. For many cycles, we've monitored the transmissions emanating from a nearby blue planet called Earth. The messages are chaotic, often filled with tales of aggression and a destructive need for conquest. Fear takes root – would these 'humans' seek to extend their destructive tendencies to our peaceful Mars?</p>
<p>We are not warriors. But we are protectors of our precious way of life. Our network of unseen watchers listens ever closer to these Earthlings, hoping to understand their true nature and discern if peaceful coexistence is attainable, or if we must brace ourselves for an interplanetary conflict we do not desire.</p></div>
<div class="item"><img src="IMG_8854.jpeg" alt="Martian weather person">
</div>
<div class="item">
<h2>Hyntelmig Weather</h2>
<p>Mardunctikabonians, get ready for another exhilarating day on our grand planet. Temperatures around the equatorial regions should reach a pleasant 68°F during the afternoon, perfect for a stroll along the Valles Marineris. That said, nighttime lows will plunge to a bone-chilling -95°F, so layer up! Keep an eye on the southern hemisphere, where dust storms seem to be kicking up – they could strengthen along the rim of the Hellas Basin. And for those seeking the thrill of a Martian gale, head to the northern plains later in the week – winds there might exceed a brisk 60 mph. Remember, Martians, our dynamic weather is part of what makes life on this planet so uniquely extraordinary!</p>
</div>
</div>
</section>
<!-- Link to the JavaScript file -->
<script src="script.js"></script
<footer>
<p id="copyright">Copyright © <span id="year"></span> Fernando Lopez III. All rights reserved.</p>
</footer>
</body>
</html>