-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog1.html
108 lines (104 loc) · 5.52 KB
/
blog1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiana Paunoska | Post</title>
<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=Noto+Serif+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="poststyles.css">
<link rel="icon" href="sliki/favicon.ico">
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script>
<script>
$(window).on("load",function(){
$(document).ready(function(){
$("#p1").click(function(){
var user1=$("#u1").val();
var comment1=$("#c1").val();
var time1=new Date($.now());
var day1=time1.getDate();
var month1=time1.getMonth();
var year1=time1.getFullYear();
var hour1=time1.getHours();
var min1=time1.getMinutes();
var prev1=$("#i1").html();
localStorage.setItem('c1',prev1);
$("#i1").html(prev1 + "<div class=\"imguser\"><img src=\"sliki/user.png\" width=\"50\" height=\"50\"></div><div class=\"commbox\"><p class=\"username\">" + user1 + "</p><em class=\"timetext\">" + hour1 +":" + min1 + " " + day1 + "/" + month1 + "/" + year1 + "</em><p class=\"commtext\">" + comment1 + "</p></div><hr><br>");
})
})
})
</script>
<script>
$(window).on("load",function(){
const prevComm1=localStorage.getItem('c1');
$("#i1").html(prevComm1);
})
</script>
<script>
$(window).on("reload",function(){
const prevComm1=localStorage.getItem('c1');
$("#i1").html(prevComm1);
})
</script>
</head>
<header>
<nav>
<ul>
<li><a class="special" href="home.html">Home</a></li>
<li><a class="special" href="favthings.html">Favorite Things</a></li>
<li><a class="special" href="blogposts.html">Latest Posts</a></li>
<li><a class="special" href="gallery.html">Gallery</a></li>
<li><a class="special" href="contact.html">Contact</a></li>
<li class="imgEl"><img src="sliki/logo.png" alt="Logo"></li>
</ul>
</nav>
</header>
<body>
<p class="upperpart"><date>24/10/2021</date>
<em>Science, Technology</em></p>
<h1>NASA Completes Mega-Moon<br> Rocket Stacking, Invites<br> Media to Learn More</h1>
<p>NASA’s Orion spacecraft is assured onto NASA's compelling and powerful Space Launch System rocket. It’s unified system is entering the final stage of preparations until it takes a flight test to the Moon. The mission Artemis I is said to pave the way for a flight test with crew in the future. With stacking already concluded, a series of interspersed tests now sit between the mega-Moon rocket and intended liftoff for deep space, estimated to be in February 2022.
The team working on this ambitious project has demonstrated tremendous dedication preparing for the launch of Artemis I. While there is still work to be done to get to launch, with continued integrated tests, seeing the fully stacked SLS is most certainly going to be an achievement to look upon.
Each of the test campaigns will evaluate the rocket and spacecraft as a unified system for the first time, building upon each other and culminating in a simulation at the pad to prepare for the long-awaited launch day.
</p>
<p class="small">
<img src="sliki/nasa.jpg" alt="Artemis - NASA"><br>
NASA completed stacking Oct. 21, 2021, of the agency's Space Launch System rocket and Orion spacecraft for the Artemis I uncrewed mission around the Moon. The stacking operations were conducted inside the Vehicle Assembly Building at NASA's Kennedy Space Center in Florida.
<em>Credits: NASA</em>
</p>
<em>Related Posts</em><hr>
<div class="related">
<div class="related">
<p class="text">Astronomers spot small black hole<br> beyond the Milky Way<br> in milestone discovery</p>
<a class="post" href="blog4.html">
<img class="image" src="sliki/space1.jpg" width="400" height="200">
</a>
</div>
<div class="related">
<p class="text">NASA's Juno Spacecraft <br> 'Hears' Jupiter's Moon</p>
<a class="post" href="blog8.html">
<img src="sliki/juno.jpg" width="400" height="200">
</a>
</div></div>
<br>
<em>Start your discussion</em><hr>
<div>
<label>
<textarea id="c1" rows="10" cols="80">Share your thoughts...</textarea></label>
<label>Name<input id="u1" type=text required /></label><br>
<label>Email<input type=\text\></label><br>
<button id="p1" class="postbtn">Post</button>
</div><hr>
<br>
<div id="i1" class="comm"></div>
</body>
<footer class="footerclass"><hr>
<p class="standard">© 2021 Tiana Paunoska</p>
<p class="standard">Information</p>
<p class="standard">
<a href="contact.html">contact me</a>
</p>
</footer>
</html>