-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
58 lines (52 loc) · 2.5 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="istyle.css" />
<title>AeroTech</title>
</head>
<body>
<div class="box">
<h1 class="box__title">
<div class="waviy">
<span style="color: hsl(0, 45%, 52%);">A</span>
<span style="--i:2">e</span>
<span style="--i:3">r</span>
<span style="--i:4">o</span>
<span style="--i:5">T</span>
<span style="--i:6">e</span>
<span style="--i:7">c</span>
<span style="--i:8">h</span>
</div>
</h1>
</div>
<div class="box">
<a href="#fa" class="link-1" id="fah">Fighter Aircrafts</a>
<div class="modal-container" id="fa" style="--m-background: transparent">
<div class="modal">
<h1 class="modal__title">Fighter Aircrafts</h1>
<p class="modal__text">
Fighter aircraft are fixed-wing military aircraft designed primarily for air-to-air combat. In military conflict, the role of fighter aircraft is to establish air superiority of the battlespace. Domination of the airspace above a battlefield permits bombers and attack aircraft to engage in tactical and strategic bombing of enemy targets.
</p>
<button class="modal__btn"><a href="fighter.html" target="_blank" style="color: white;">Take off ✈</a></button>
<a href="#fah" class="link-2"></a>
</div>
</div>
</div>
<div class="box">
<a href="#pa" class="link-1" id="pah">Commercial Aircrafts</a>
<div class="modal-container" id="pa" style="--m-background: transparent">
<div class="modal">
<h1 class="modal__title">Commercial Aircrafts</h1>
<p class="modal__text">
Commercial aircrafts are used for transporting passengers and air cargo. Such aircraft are most often operated by airlines. Although the definition of an airliner can vary from country to country, an airliner is typically defined as an airplane intended for carrying multiple passengers or cargo in commercial service
</p>
<button class="modal__btn"><a href="com.html" target="_blank" style="color: white;">Take off ✈</a></button>
<a href="#pah" class="link-2"></a>
</div>
</div>
</div>
</body>
</html>