-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 1.84 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 1.84 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
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevOps Project</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
</head>
<body>
<!-- Navbar -->
<nav>
<div class="nav-container">
<div class="logo">DevOps Project</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#links">Links</a></li>
</ul>
</div>
</nav>
<!-- Hero / Home Section -->
<section id="home" class="section home">
<div class="hero-container">
<h1>Welcome to Our DevOps Project</h1>
<p>A simple demonstration of Git, Branching, Pull Requests & GitHub Pages.</p>
<a href="#about" class="btn">Learn More</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="section about">
<div class="container">
<h2>About</h2>
<p>This project was created as part of a DevOps/GitHub exercise.
It demonstrates version control, collaboration, and deployment using GitHub Pages.</p>
</div>
</section>
<!-- Links Section -->
<section id="links" class="section links">
<div class="container">
<h2>Project Links</h2>
<div class="links-grid">
<a href="README.md" target="_blank" class="link-card">
<i class="fas fa-file-alt fa-2x"></i>
<span>README.md</span>
</a>
<a href="https://github.com/Varunvashisht55/devops-git-project" target="_blank" class="link-card">
<i class="fab fa-github fa-2x"></i>
<span>GitHub Repo</span>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2025 DevOps Git Project </p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>