-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrew.html
83 lines (80 loc) · 3.96 KB
/
crew.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>CREW</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" href="style/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bellefair&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="assets/favicon-32x32.png">
<style>
@media only screen and (min-width: 375px){
body {
background: url("/assets/crew/background-crew-mobile.jpg");
background-size:cover;
height: 100vh;
}
}
@media only screen and (min-width: 768px){
body {
background: url("/assets/crew/background-crew-tablet.jpg");
background-size: cover;
height: 100vh;
}
}
@media only screen and (min-width: 1280px){
body {
background: url("/assets/crew/background-crew-desktop.jpg");
background-size: cover;
height: 100vh;
}
}
</style>
</head>
<body>
<div class="nav-bar">
<div class="logo">
<a href="index.html"><img src="assets/shared/logo.svg" alt="company logo"></a>
</div>
<div class="toggle-button-open" id="toggle-ham-menu" onclick="imgClick()"><!--<img src="assets/shared/icon-hamburger.svg">--> </div>
<div class="navbar-links" id="nav-links">
<ul>
<li id="home-nav-btn"><a href="index.html">00 HOME</a></li>
<li id="dest-nav-btn"><a href="destination.html">01 DESTINATION</a></li>
<li id="crew-nav-btn"><a href="crew.html">02 CREW</a></li>
<li id="tech-nav-btn"><a href="technology.html">03 TECHNOLOGY</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="row" id="crew-row">
<div class="col-lg-6" id="crew-col1">
<h5 class="crew-title"><span style="color:rgb(158, 158, 158)">02</span>MEET YOUR CREW</h5>
<div class="crew-content">
<h3 class="crew-position" id="crew-position">COMMANDER</h3>
<h2 class="crew-name" id="crew-name">DOUGLAS HURLEY</h2>
<p class="crew-desc" id="crew-desc">Douglas Gerald Hurley is an American engineer, former Marine Corps pilot and former NASA astronaut. He launched into space for the third time as commander of Crew Dragon Demo-2.</p>
</div>
<div class="crew-nav">
<div class="nav-circles" id="nav-c1"></div>
<div class="nav-circles" id="nav-c2"></div>
<div class="nav-circles" id="nav-c3"></div>
<div class="nav-circles" id="nav-c4"></div>
</div>
</div>
<div class="col-lg-6" id="crew-col2">
<img src="assets/crew/image-douglas-hurley.webp" class="crew-image" id="crew-image" alt="crew image">
<hr class="crew-image-line">
</div>
</div>
</div>
<script src="js/script.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>