-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple Test Page</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
padding-top: 50px;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}
h1 {
color: #333;
font-size: 2.5em;
}
p {
color: #666;
}
</style>
</head>
<body>
<h1>Welcome to Our Simple Test Page</h1>
<p>This is a test repository created to demonstrate basic GitHub operations. It includes creating a repository, pushing files, adding CSS, creating issues, and making pull requests.</p>
<p>Our goal is to provide a simple, clean example of repository management and collaboration.</p>
</body>
</html>