-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTechnologyPage.html
More file actions
63 lines (60 loc) · 2.52 KB
/
TechnologyPage.html
File metadata and controls
63 lines (60 loc) · 2.52 KB
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
<!DOCTYPE html>
<html>
<head>
<Title>Home Page</Title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body >
<div class="container">
<nav id="navbar">
<div class="icon">
<i class="fa-sharp fa-solid fa-plane-circle-exclamation"></i>
</div>
<div style="width: 30%;" class="line">
<hr>
</div>
<ul class="nav-list">
<li class="items-list">
<a href="HomePage.html">Home</a>
</li>
<li class="items-list">
<a href="DestinationPage.html" >Destination</a>
</li>
<li class="items-list">
<a href="CrewPage.html">Crew</a>
</li>
<li class="items-list">
<a href="TechnologyPage.html" style="border-bottom: 3px solid white;">Technology</a>
</li >
</ul>
</nav>
<br><br>
<div class="title">
<h3>SPACE LAUNCH 101</h3>
</div>
<br>
<br>
<br><br>
<div class="tech-content">
<div class="numbersWithparagraph">
<div class="numbers">
<h3 style="background-color: white; color: black;">1</h3>
<h3>2</h3>
<h3>3</h3>
</div>
<div style="margin-top: 20px;">
<p style="color: gainsboro; font-size: 15px;">THE TERMENOLOGY..</p>
<p style="font-size: 30px; margin-top: -8px; margin-bottom: 5px;letter-spacing: 10px;">LAUNCH VEHICLE</p>
<p class="paragraph-tech">Lorem ipsum dolor sit amet consectetur adipisicing elit. In numquam mollitia minima, architecto incidunt et quia tempore minus possimus necessitatibus quasi error nihil cupiditate amet culpa repudiandae id tenetur velit.</p>
</div>
</div>
<div>
<img src="rocket.jpg" alt="" height="500px">
</div>
</div>
</div>
</body>
</html>