-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your GitHub Account</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #333;
text-align: center;
}
p {
color: #555;
}
.github-link {
display: block;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Welcome to Your GitHub Account</h1>
<p>Hello, this is your GitHub account. You can customize this page to showcase your projects and contributions.</p>
<p>Feel free to update this `index.html` file with your own content.</p>
<p>For more information about GitHub Pages, check out the <a href="https://pages.github.com/" target="_blank">GitHub
Pages documentation</a>.</p>
<div class="github-link">
<a href="https://github.com/da2gl" target="_blank">Visit your GitHub profile</a>
</div>
</body>
</html>