-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>Samuel Gerkin Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fff;
color: #000;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
h1 {
color: #000;
background-color: #add8e6;
padding: 20px;
width: 100%;
text-align: center;
}
h2 {
color: #000;
}
p {
color: #000;
text-align: center;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #add8e6;
}
ul {
list-style-type: none;
padding: 0;
text-align: center;
}
li {
padding: 5px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Samuel Gerkin's Portfolio</h1>
<p>Hi, I'm Samuel Gerkin. I am a programmer.</p>
<h2>My Works</h2>
<ul>
<li><a href="#project1">Project 1</a></li>
<li><a href="#project2">Project 2</a></li>
</ul>
<h2 id="project1">Project 1</h2>
<p>Description of Project 1</p>
<h2 id="project2">Project 2</h2>
<p>Description of Project 2</p>
</div>
</body>
</html>