-
Notifications
You must be signed in to change notification settings - Fork 0
/
Technology.html
168 lines (143 loc) · 6.59 KB
/
Technology.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="Tech.css">
</head>
<body>
<header>
<div>
<img id="menu" class="imglogo" src="images/shared/logo.svg" alt="logo of company">
</div>
<button class="imgmenu" aria-controls="menubtn" aria-expanded="false">
<!-- <span class="sr-only">Menu</span> -->
</button>
<div class="line">
</div>
<nav class="nav" data-visible="false">
<ul id="menubtn" >
<li class="active">
<a href="index.html"> <span aria-hidden="true"> 00 </span> Home
</a>
</li>
<li>
<a href="destination-moon.html"> <span aria-hidden="true"> 01 </span> Destination
</a>
</li>
<li><a href="Crew.html"> <span aria-hidden="true"> 02</span> Crew
</a>
</li>
<li><a href="Technology.html"> <span aria-hidden="true"> 03</span> Technology
</a>
</li>
<li><a href="pricing.html"> <span aria-hidden="true"> 04</span> Price
</a>
</li>
</ul>
</nav>
</header>
<Main>
<!-- heading -->
<Section class="heading">
<div class="H2">
<h2>
<span class="N3"> 03</span> <span> SPACE LAUCH 101</span>
</h2>
</div>
</Section>
<!-- content -->
<section class="content">
<!-- Numbers -->
<section class="numbers" id="btn">
<button class="slidebtn current-slide">
<div class="circle">
<h3 class="click">1</h3>
</div>
</button>
<button class="slidebtn ">
<div class="circle">
<h3 class="click">2</h3>
</div>
</button>
<button class="slidebtn">
<div class="circle">
<h3 class="click">3</h3>
</div>
</button>
</section>
<section class="writings">
<div class= "write">
<!-- First Section -->
<div class=" One writeup current-writeup">
<p class="p1">
THE TERMINOLOGY........
</p>
<P class="p2">
LAUCH VEHICLE
</P>
<P class="p3">
A lauch vehicle or carrier rocket is a rocket-propelled
vehicle used to carry a payload from Earth's surface to
space, usually to Earth orbit or beyond.Our WEB-X
carrier rocket is the most powerful in operation.
Standing 150 meteres tall, it's quite an awe-inspiring sight
on the lauch pad!
</P>
</div>
<!-- Second section -->
<div class="writeup">
<p class="p1">
THE TERMINOLOGY.......
</p>
<P class="p2">
SPACEPORT
</P>
<P class="p3">
A spaceport or cosmodrome is a site for lauching (or
receiving)spacecraft, by analogy to the seaport for ships
or airport for aircraft.Based in the famous Cape
Canaveral,our spaceport is ideally situated to take
advantage of the Earth's rotation for Lauch.
</P>
</div>
<!-- Thrid section -->
<div class="writeup">
<p class="p1">
THE TERMINOLOGY......
</p>
<P class="p2">
SPACE CAPSULE
</P>
<P class="p3">
A space capsule is an often-crewed spacecraft that uses
a blunt-body reentry capsule to reenter the Earth's
atmosphere without wings. Our capsule is where you'll
spend your time during the flight. It includes a space
gym, cinema, and plenty of other activities to keep you
entertained.
</P>
</div>
</div>
</section>
<!-- image section -->
<section class="image">
<div class="img">
<div class="pic current-slide" >
<img class="img1" src="images/technology/image-launch-vehicle-portrait.jpg" alt="Image of lauch vehicle">
</div>
<div class="pic">
<img class="img2" src="images/technology/image-space-capsule-portrait.jpg" alt="Image of space capsule">
</div>
<div class="pic">
<img class="img3" src="images/technology/image-spaceport-portrait.jpg" alt="Image of space port">
</div>
</div>
</section>
</section>
</Main>
<script src="Tech.js"></script>
</body>
</html>