-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mr Green Linux User</title>
<style>
/* Add your CSS styles here */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f9eb; /* Soft green background */
}
header {
background-color: #4caf50; /* Dark green header */
color: #fff; /* White header text */
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 20px auto; /* Center container */
padding: 0 20px; /* Add padding to the sides */
}
h1 {
color: #fff; /* White header text */
}
p {
margin-bottom: 20px; /* Add margin to paragraphs */
}
</style>
</head>
<body>
<header>
<h1>Linux is my friend</h1>
</header>
<div class="container">
<h2>About Me</h2>
<p>I am Mr Green developer of ArchBang Linux live iso</p>
<div class="image">
<img src="images/pacgre.png" alt="My avatar">
</div>
</div>
<footer>
<div class="container">
<p>© 2024 Mr Green. All rights reserved.</p>
</div>
</footer>
</body>
</html>