-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
62 lines (62 loc) · 1.83 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo Page for GitHub PRs</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
main {
background-color: #fff;
padding: 20px;
margin: 20px 0;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Welcome to the Demo Page</h1>
<h1>This is a Drishya Garg</h1>
</header>
<main>
<section>
<h2>About This Page</h2>
<p>This page is a demonstration of how to contribute to an HTML project on GitHub using pull requests. Feel free to edit this section with your own content.</p>
</section>
<section>
<h2>Contribute</h2>
<p>If you would like to contribute, you can make changes to this page and submit a pull request. Here are some ideas:</p>
<ul>
<li>Add a new section with your own content</li>
<li>Improve the styling of the page</li>
<li>Fix any typos or errors</li>
<li>Add new features or functionality</li>
</ul>
</section>
</main>
<footer>
<a href = "contact.html">Contact Us</a>
<p>© 2024 Demo Repository. All rights reserved.</p>
</footer>
</body>
</html>