-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 978 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (34 loc) · 978 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>My First Web Page</title>
</head>
<body class="body">
<header class="main-header">
<h1 class="logo">My Site</h1>
<nav class="main-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to my basic Apache web server!</h1>
<p>This is a custom webpage on Debian 12.</p>
<div class="container">
<div class="rectangle-vert"></div>
<div class="rectangle-horiz"></div>
<div class="square"></div>
<div class="circle"></div>
<div class="oval-vert"></div>
<div class="oval-horiz"></div>
<div class="line-horiz"></div>
<div class="line-vert"></div>
</div>
</main>
</body>
</html>