-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCrewPage.html
More file actions
71 lines (65 loc) · 2.7 KB
/
CrewPage.html
File metadata and controls
71 lines (65 loc) · 2.7 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
64
65
66
67
68
69
70
71
<!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" style="border-bottom: 3px solid white;">Crew</a>
</li>
<li class="items-list">
<a href="TechnologyPage.html">Technology</a>
</li >
</ul>
</nav>
<br>
<br>
<div class="title">
<h3>MEET Your CREW</h3>
</div>
<br>
<br><br>
<br>
<div class="crew-content">
<div class="div-left">
<p style="color: gainsboro;font-size: 25px;">FLIGHT EGINEER</p>
<p style="font-size: 35px; margin-top: -5px; margin-bottom: 5px;">ANOUSHEH ANSARI </p>
<p style="color: gainsboro; font-size: 22px;line-height: 35px;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquid dolore itaque ipsa architecto autem perferendis facere commodi repudiandae iusto ea, voluptatem excepturi aspernatur tempore! Soluta distinctio inventore at nulla dolore?</p>
<br>
<br><br>
<br>
<br><br>
<div class="icons">
<i class="fa-sharp fa-solid fa-circle"></i>
<i class="fa-sharp fa-solid fa-circle" style="color: #bfbfbf;"></i>
<i class="fa-sharp fa-solid fa-circle" style="color: #bfbfbf;"></i>
<i class="fa-sharp fa-solid fa-circle" style="color: #bfbfbf;"></i>
</div>
<br><br>
</div>
<div>
<img src="rocket.jpg" alt="" height="500px">
</div>
</div>
</div>
</body>
</html>