This repository was archived by the owner on Feb 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (79 loc) · 2.18 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Items with html and css</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- LAPTOP -->
<section>
<main>
<div class="laptop-block">
<div class="case">
<div class="screen">
<div class="shine"></div>
<div class="shine--2"></div>
</div>
</div>
<div class="keys">
<div class="sensor"></div>
</div>
</div>
</main>
</section>
<!-- CAR -->
<section>
<main>
<div class="car">
<!-- TOP -->
<div class="roof" title="Roof">
<div class="window" title="Window"></div>
<div class="quarter-window"></div>
</div>
<!-- FENDER -->
<div class="fender" title="Fender">
<!-- FRONT -->
<div class="indicator-light" title="Indicator-Light"></div>
<div class="door-handle" title="Door-handle"></div>
<!-- BACK -->
<div class="tail-light" title="Tail-Light"></div>
</div>
<!-- FOOT -->
<div class="foot">
<div class="tires">
<div class="front-bumper" title="Front-Bumper"></div>
<div class="front" title="Front-Wheel"></div>
<div class="back" title="Back-Wheel"></div>
<div class="back-bumper" title="Back-Bumper"></div>
</div>
</div>
</div>
</main>
</section>
<!-- ROCKET -->
<section>
<main>
<div class="rocket">
<!-- TOP -->
<div class="mission-elements">
</div>
<!-- CENTER -->
<div class="exploration-upper-stage">
<div class="portholes">
</div>
</div>
<!-- CORE STAGE / Boosters -->
<div class="boosters"></div>
<div class="flame_wrapper">
<div class="oranged flame"></div>
<div class="orange flame"></div>
<div class="gold flame"></div>
<div class="lightyellow flame"></div>
</div>
</div>
</main>
</section>
</body>
</html>