-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (115 loc) · 4.66 KB
/
Copy pathindex.html
File metadata and controls
127 lines (115 loc) · 4.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!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>Home | Resume/CV Builder</title>
<link rel="icon" href="https://img.icons8.com/?size=100&id=a4l6bA9mSmBh&format=png&color=40C057" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<style> body {
font-family: 'Arial', sans-serif;
color: #333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.hero-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 800px;
background: linear-gradient(135deg, #007bff, #00c6ff);
color: #fff;
padding: 40px 20px;
}
.hero-section img {
max-width: 100%;
height: auto;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.hero-content {
max-width: 80%;
}
.hero-content h1 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
}
.hero-content p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 20px;
}
.btn-primary {
background-color: #28a745;
border-color: #28a745;
padding: 12px 24px;
font-size: 1.1rem;
border-radius: 5px;
transition: background-color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
background-color: #218838;
border-color: #1e7e34;
}
.footer {
background-color: #343a40; /* Match navbar color */
color: #fff;
text-align: center;
padding: 20px;
position: relative;
bottom: 0;
width: 100%;
}
.footer p {
margin: 0;
font-size: 0.9rem;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">Resume Builder</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html"><strong>HOME</strong></a></li>
<li class="nav-item"><a class="nav-link" href="free.html"><strong>FREE</strong></a></li>
<li class="nav-item"><a class="nav-link" href="coupon-code.html"><strong>PAID</strong></a></li>
<li class="nav-item"><a class="nav-link" href="about.html"><strong>ABOUT US</strong></a></li>
<li class="nav-item"><a class="nav-link" href="contact.html"><strong>CONTACT US</strong></a></li>
<li class="nav-item"><a class="nav-link" href="pricing.html"><strong>PRICING</strong></a></li>
<li class="nav-item"><a class="nav-link" href="terms-and-conditions.html"><strong>TERMS</strong></a></li>
<li class="nav-item"><a class="nav-link" href="privacy-policy.html"><strong>PRIVACY</strong></a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section" id="home">
<div class="hero-content">
<h1>Welcome to Resume Builder</h1>
<p>Create a standout resume with ease using our intuitive resume builder. Customize templates, add your professional details, and download your resume in multiple formats.</p>
<a href="free.html" class="btn btn-primary">Get Started</a>
</div>
<img src="/assets/2.png" alt="Resume Building">
</section>
<!-- Footer -->
<footer class="footer">
<p>Developed by VIGNESH G <span id="currentYear"></span>. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js"></script>
</body>
</html>