-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 945 Bytes
/
index.html
File metadata and controls
46 lines (42 loc) · 945 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
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Welcome to Akram's world</title>
<style>
body {
margin: 40px ;
padding: 40px;
background-color: #C0C0C0;
border: 2px dashed #000000
}
h1 {
text-align: center;
color: #F51B00;
background-color: #C0C0C0;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<h1>Akram's Website</h1>
<h2>Projects</h2>
<ul>
<li><a href="games">Video Games I'm Playing</a></li>
<li><a href="songs">Songs That I'm Like</a></li>
<li><a href="MathProject">Math Project</a></li>
</ul>
<h2>Portflio</h2>
<ul>
<li><a href="resume">My Resume</a></li>
</ul>
<footer>
<a href="http://validator.w3.org/check?uri=https://abikoni2003.github.io/website/">
<strong> HTML </strong> Valid! </a> |
<a href="http://jigsaw.w3.org/css-validator/validator?uri=https://abikoni2003.github.io/website/?profile=css3">
<strong> CSS </strong> Valid! </a>
</footer>
</body>
</html>