-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 939 Bytes
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 939 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Welcome to My GitHub Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 2em;
background-color: #f9f9f9;
color: #222;
text-align: center;
}
h1 {
color: #0080ff;
}
a {
color: #0056b3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.container {
background: #fff;
border-radius: 1em;
box-shadow: 0 0 10px #ddd;
display: inline-block;
padding: 2em 3em;
margin-top: 3em;
}
</style>
</head>
<body>
<div class="container">
<h1>Hello, World!</h1>
<p>Welcome to my GitHub Pages site.</p>
<p>Visit my <a href="https://github.com/IamJignesh/test-project" target="_blank">GitHub repository</a>.</p>
</div>
</body>
</html>