-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (63 loc) · 2.01 KB
/
index.html
File metadata and controls
63 lines (63 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your GitHub Pages</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #333;
}
p {
color: #666;
line-height: 1.6;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to My Page</h1>
<p>Here's a basic overview of some things I write about:</p>
<ul>
<li> Lessons Learned from developing code</li>
<li> Problems with Scrum</li>
<li> Optimizing how you learn</li>
<li> <a href="/blog/checklists.html"> Development Checklists </a></li>
</ul>
<ul>
<li><a href="https://guides.github.com/features/pages/" target="_blank">GitHub Pages Documentation</a></li>
<li><a href="/blog/checklists.html" target="_blank">HTML Tutorial</a></li>
<li><a href="https://www.w3schools.com/css/" target="_blank">CSS Tutorial</a></li>
</ul>
<p>Hope you enjoy and even if you felt like I didn't give you anything useful, my professional progress made you think. </p>
<a href="https://github.com" class="btn">Go to GitHub</a>
</div>
</body>
</html>