-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 2 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 2 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>GitHub Pages Demo</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #333;
}
.container {
background: white;
border-radius: 10px;
padding: 40px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
h1 {
color: #667eea;
margin-top: 0;
}
.info {
background: #f0f0f0;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
}
a {
color: #667eea;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>🎉 Welcome to GitHub Pages!</h1>
<p>This is a simple HTML page deployed to GitHub Pages.</p>
<div class="info">
<strong>What is GitHub Pages?</strong>
<p>GitHub Pages is a static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub and publishes a website.</p>
</div>
<h2>Getting Started</h2>
<ul>
<li>Create an HTML file in your repository</li>
<li>Push it to GitHub</li>
<li>Enable GitHub Pages in your repository settings</li>
<li>Your site will be live at <code>https://username.github.io/repository</code></li>
</ul>
<p><strong>Learn more:</strong> <a href="https://pages.github.com" target="_blank">GitHub Pages Documentation</a></p>
</div>
</body>
</html>