-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgit.html
More file actions
62 lines (55 loc) · 1.93 KB
/
git.html
File metadata and controls
62 lines (55 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git Page</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #333;
color: white;
padding: 1em;
font-size: 1.5em;
}
main {
padding: 2em;
}
footer {
background-color: #333;
color: white;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Git Page</h1>
</header>
<nav style="background-color: #555; padding: 10px; text-align: center;">
<a href="#" style="color: #fff; text-decoration: none; margin: 0 10px;">Home</a>
<a href="contact.html" style="color: #fff; text-decoration: none; margin: 0 10px;">Contact</a>
<a href="privacy.html" style="color: #fff; text-decoration: none; margin: 0 10px;">Privacy</a>
<a href="git.html" style="color: #fff; text-decoration: none; margin: 0 10px;">Git</a>
<a href="#" style="color: #fff; text-decoration: none; margin: 0 10px;">GitHub</a>
</nav>
<main>
<p>Welcome to my Git page. This is a dummy page for demonstration purposes.</p>
<p>Git is a distributed version control system that helps you track changes in your code.</p>
<p>Feel free to explore the world of Git and version control!</p>
</main>
<footer style="background-color: #333; color: #fff; text-align: center; padding: 10px; position: fixed; bottom: 0; width: 100%;">
<p>© 2023 Website. All rights reserved.</p>
</footer>
</body>
</html>