-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 829 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Sorry this is the website you are looking for</title>
<style>
.container {
display: flex;
align-items: center;
justify-content: center;
}
.image {
width: 200px; /* Adjust image width as needed */
height: auto;
margin-right: 20px; /* Adjust spacing between image and text */
}
.text {
font-size: 18px; /* Adjust text size as needed */
}
</style>
</head>
<body>
<div class="container">
<img src="img/pngegg.png" alt="Clever Image" class="image">
<p class="text">This website is the epitome of multitasking. It's so dedicated to email that it even moonlights as a website. Talk about a side hustle!</p>
</div>
</body>
</html>