-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
116 lines (100 loc) · 3.37 KB
/
work.html
File metadata and controls
116 lines (100 loc) · 3.37 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
<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">About</a></li>
<li><a href="work.html" type="current">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 video file -->
<section class="video">
<div class="video-file">
<video height="300" width="300" autoplay controls>
<source
src="https://videos.pexels.com/video-files/1587355/1587355-hd_1920_1080_30fps.mp4"
type="video/mp4"
alt="video of plane taking off"
width="400px"
height="400px"
/>
</video>
</div>
</section>
<!-- adding table items -->
<section class="about-work">
<div class="lists">
<h1>Here is a table with all our branches</h1>
<div class="table">
<table border="1">
<tr>
<th>Branch</th>
<th>Location</th>
<th>Manager</th>
</tr>
<tr>
<th>Nigeria</th>
<th>Abuja</th>
<th>Mr Usman</th>
</tr>
<tr>
<th>Ghana</th>
<th>Accra</th>
<th>Mr Mubaraq</th>
</tr>
<tr>
<th>Kenya</th>
<th>Nairobi</th>
<th>Miss Sarah</th>
</tr>
<tr>
<th>Egypt</th>
<th>Cairo</th>
<th>Miss Bisola</th>
</tr>
</table>
</div>
</div>
<!-- adding form -->
<aside id="sidebar">
<div>
<h2>Register with us</h2>
<form class="my-form">
<label>Name</label><br />
<input type="text" placeholder="name" /><br /><br />
<label>Email</label><br />
<input type="email" placeholder="email" /><br /><br />
<label>Service</label><br />
<input type="text" placeholder="service" /><br /><br />
<label>Message</label><br />
<textarea placeholder="message" col="25px" row="10px"></textarea
><br /><br />
<div class="button" type="submit"><button>Send</button></div>
</form>
</div>
</aside>
</section>
<!-- adding footer -->
<footer class="footer">Copyright © 2024, Avery Airline</footer>
</body>
</html>
</DOCTYPE>