-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (142 loc) · 4.65 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css'><link rel="stylesheet" href="style footer.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('bwm.jpg');
background-size:cover;
background-position: center;
background-repeat: no-repeat;
color: #fff;
position: relative;
}
header {
background-color: rgba(0, 0, 0, 0.7);
padding: 1em;
text-align: center;
color: white;
}
nav {
background-color: rgba(0, 0, 0, 0.5);
overflow: hidden;
}
nav a {
float: left;
display: block;
color: bisque;
text-align: center;
padding: 14px 16px;
text-decoration: wavy;
transition: background-color 0.3s; /* Added smooth transition effect */
}
nav a:hover {
background-color: rgba(255, 255, 255, 0.2); /* Set a transparent background on hover */
color: white;
}
img.logo {
width: 100px;
height: 50px;
margin-right: 10px;
}
img.banner {
width: 100%;
height: auto;
}
.welcome-container {
text-align: center;
padding: 20px;
}
</style>
</head>
<body>
<header>
<div>
<h1>Home Page</h1>
</div>
</header>
<nav>
<a href="index.html">Home </a>
<a href="services.html">SERVICES</a>
<a href="login.html">LOGIN</a>
<a href="team.html">TEAM</a>
<a href="showcase.html">SHOWCASE</a>
<a href="readandblog.html">READ OUR BLOGS</a>
<a href="contact.html">CONTACT AND SUPPORT</a>
</nav>
<div class="welcome-container">
<h2 style="color: black;">Welcome to our website</h2>
<p style="color: black;">Explore and enjoy our content</p>
</div>
<div>
<!-- partial:index.partial.html -->
<footer>
<div class="content">
<div class="top">
<div class="logo-details">
<i class="fab fa-slack"></i>
<span class="logo_name">CAR</span>
</div>
<div class="media-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="link-boxes">
<ul class="box">
<li class="link_name">Company</li>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact us</a></li>
<li><a href="login.html">Login </a></li>
<li><a href="services.html">Services</a></li>
</ul>
<ul class="box">
<li class="link_name">Services</li>
<li><a href="#">App design</a></li>
<li><a href="#">Web design</a></li>
<li><a href="#">Logo design</a></li>
<li><a href="#">Banner design</a></li>
</ul>
<ul class="box">
<li class="link_name">Account</li>
<li><a href="#">Profile</a></li>
<li><a href="#">My account</a></li>
<li><a href="#">Prefrences</a></li>
<li><a href="#">Purchase</a></li>
</ul>
<ul class="box">
<li class="link_name">Courses</li>
<li><a href="#">HTML & CSS</a></li>
<li><a href="#">JavaScript</a></li>
<li><a href="#">Photography</a></li>
<li><a href="#">Photoshop</a></li>
</ul>
<ul class="box input-box">
<li class="link_name">Subscribe</li>
<li><input type="text" placeholder="Enter your email"></li>
<li><input type="button" value="Subscribe"></li>
</ul>
</div>
</div>
<div class="bottom-details">
<div class="bottom_text">
<span class="copyright_text">Copyright © 2024 <a href="#"> </a>All rights reserved</span>
<span class="policy_terms">
<a href="#">Privacy policy</a>
<a href="#">Terms & condition</a>
</span>
</div>
</div>
</footer>
</div>
</body>
</html>