-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-html.html
More file actions
27 lines (26 loc) · 1.05 KB
/
index-html.html
File metadata and controls
27 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website with Animated SVG Background</title>
<link rel="stylesheet" href="styles-css.css">
</head>
<body>
<!-- SVG Background Container -->
<div class="background-container">
<object data="background.svg" type="image/svg+xml" class="background-svg"></object>
</div>
<!-- Website Content -->
<div class="content">
<h1>Welcome to My Website</h1>
<p>
It's been a long time since I last practiced code, around 2 years. I spent these two years trying to survive a genocide.
I'm trying to get the gears running again, practicing code's basics here and there, I lost access to my old computer
where I kept most of my projects, I'll retain access to my old projects and push them here at some point.
This is a fresh new start, a [re]start.
</p>
<button class="btn">Get Started</button>
</div>
</body>
</html>