-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtechnology-vehicle.html
75 lines (54 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=Bellefair&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="components/header.js" type="text/javascript" defer></script>
<script defer src="js/technology.js"></script>
<script defer src="js/main.js"></script>
<title>Frontend Mentor | Space tourism website</title>
</head>
<body>
<div class="container-technology">
<nav class="navigation-desktop">
<ul class="list-desktop">
<li class="list-desktop__item"><a class="desk-nav" href="index.html"><b>00 </b>Home</a></li>
<li class="list-desktop__item"><a class="desk-nav" href="destination-moon.html"><b>01 </b>Destination</a></li>
<li class="list-desktop__item"><a class="desk-nav" href="crew-commander.html"><b>02 </b>Crew</a></li>
<li class="list-desktop__item"><a class="desk-nav" href="technology-vehicle.html"><b>03 </b>Technology</a></li>
</ul>
</nav>
<div class="line"></div>
<header-component></header-component>
<h5 class="h5-large-screen"><span style="font-weight:bold; color:#d0d6f9">03 </span>Space Launch 101</h5>
<div class="tech-content">
<h5 class="h5-small-screen"><span style="font-weight:bold; color:#d0d6f9">03 </span>Space Launch 101</h5>
<img class="tech-image" src="assets/technology/image-launch-vehicle-landscape.jpg" alt="launch-vehicle">
<div class="buttons">
<div class="num active">1</div>
<div class="num">2</div>
<div class="num">3</div>
</div>
<div class="tech-container flex-col-2">
<p class="tech-title">
The terminology...
</p>
<h2 class="tech-header">Launch vehicle</h2>
<p class="tech-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>
</div> <!--content end-->
</div> <!--container-end-->
<main>
</main>
</body>
</html>