-
Notifications
You must be signed in to change notification settings - Fork 0
/
technology-vehicle.html
82 lines (81 loc) · 2.58 KB
/
technology-vehicle.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/technology.css" />
<script src="./js/app.js" defer></script>
<script src="./js/technology.js" defer></script>
<title>Frontend Mentor | Space tourism website</title>
</head>
<body>
<!-- Start Header -->
<header>
<div class="container">
<img src="./assets/shared/logo.svg" alt="Site Logo" class="logo" />
<div class="line"></div>
<nav>
<img src="./assets/shared/icon-close.svg" class="close-menu" alt="" />
<ul>
<li>
<a href="./index.html"><b>00</b> Home</a>
</li>
<li>
<a href="./destination-moon.html"><b>01</b> Destination</a>
</li>
<li>
<a href="./crew-commander.html"><b>02</b> Crew</a>
</li>
<li class="active">
<a href="./technology-vehicle.html"><b>03</b> Technology</a>
</li>
</ul>
</nav>
<img
src="./assets/shared/icon-hamburger.svg"
class="open-menu"
alt=""
/>
</div>
<div class="blure_back"></div>
</header>
<!-- End Header -->
<!-- Start Technology -->
<section class="technology">
<div class="container">
<h1 class="main-title"><b>03</b> Space launch 101</h1>
<div class="content">
<div class="enumirate">
<div class="num active">1</div>
<div class="num">2</div>
<div class="num">3</div>
</div>
<div class="text">
<h2>The terminology...</h2>
<p class="name">Launch vehicle</p>
<p class="description">
A launch 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 metres tall, it's quite an
awe-inspiring sight on the launch pad!
</p>
</div>
<img
src="./assets/technology/image-launch-vehicle-portrait.jpg"
alt=""
class="image"
/>
</div>
</div>
</section>
<!-- End Technology -->
</body>
</html>