-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
75 lines (68 loc) · 2.16 KB
/
about.html
File metadata and controls
75 lines (68 loc) · 2.16 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
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width, initial-scale=1.0" />
<title>Checkpoint</title>
<link rel="stylesheet" href="style4.css" type="text/css" />
</head>
<body>
<!-- adding navbar -->
<nav class="header">
<div class="header-name">My First Project</div>
<!-- adding navlinks -->
<div class="header-links">
<ul class="header-links-lists">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" type="current">About</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- adding profile -->
<div class="header-profile">
<p>User Profile</p>
<div class="header-profile-initials">AU</div>
</div>
</nav>
<!-- adding list items -->
<section class="about">
<div class="lists">
<h1>Here is a list of our services</h1>
<ul>
<li>Vacation</li>
<li>Honeymoon</li>
<li>Birthdays</li>
<li>Work Events</li>
</ul>
<h2>We also offer work packages like;</h2>
<ol>
<li>Employee Get Togethers</li>
<li>Employee Trainings</li>
<li>Conference</li>
</ol>
</div>
<!-- adding audio -->
<div>
<p>Play audio</p>
<br />
<audio controls>
<source src="rollinginthedeep.mp3" type="audio/mpeg" />
check audio extension
</audio>
</div>
<!-- adding image -->
<div class="image">
<img
src="https://media.istockphoto.com/id/1248714211/photo/sunset-at-bang-tao-beach-phuket-thailand.jpg?s=1024x1024&w=is&k=20&c=pFVnmsx1XpiwU0mZASvqeJzlf1tZ80bYuVxOgkfWYtY="
alt="picture of vacation spot"
width="400px"
height="400px"
/>
</div>
</section>
<!-- adding footer -->
<footer class="footer">Copyright © 2024, Avery Airline</footer>
</body>
</html>