-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (87 loc) · 2.79 KB
/
index.html
File metadata and controls
105 lines (87 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Website</title>
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
}
main {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1, h2, h3 {
color: #333;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
h2 {
font-size: 1.5em;
margin: 20px 0 10px;
}
h3 {
font-size: 1.2em;
margin: 10px 0;
}
p {
line-height: 1.6;
}
.button-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.button {
padding: 10px 20px;
margin: 10px;
font-size: 1em;
text-align: center;
text-decoration: none;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<main>
<h1>Hello, I am SPLATPLAYS. Welcome to My Website</h1>
<div class="button-container">
<a href="./about.html" class="button">About Me</a>
<a href="./contact.html" class="button">Contact Me</a>
<a href="./services.html" class="button">Services</a>
<a href="./skills.html" class="button">Skills</a>
<a href="./faq.html" class="button">FAQ</a>
<a href="./tools.html" class="button">Tools/Resources</a>
<a href="./tutorials.html" class="button">Tutorials/Documentation</a>
<a href="./portfolio.html" class="button">Portfolio/Projects</a>
<a href="./blog.html" class="button">Blog/Articles</a>
</div>
<h2>Why haven't I been updateing my website in a while?</h2>
<h3>I have been working on other projects including a new website!</h3>
<h3><a href="https://card-wars-production.up.railway.app">https://card-wars-production.up.railway.app</a></h3>
<h2>Conclusion</h2>
<h3>I hope you enjoyed my short webpage!</h3>
</main>
<script src="index.js"></script>
</body>
</html>