Website -1
<!DOCTYPE html>
<html>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Montserrat',sans-serif;
background-color: #000;
color: #fff;
}
nav{
background-color: rgb(0, 0, 0, 0.8);
padding: 1rem 2rem;
position: fixed;
width: 100%;
top:0;
z-index: 100;
}
.nav-links{
list-style: none;
display: flex;
justify-content: flex-end;
}
.nav-links li{
margin-left: 2rem;
}
.nav-links a{
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: color 0.3s ease;
}
.nav-links a:hover{
color: #1abc9c;
}
.marquee-container{
width: 50vw;
height: 3rem;
margin: 60px auto 0 auto;
overflow: hidden;
background-color: #1abc9c;
border-radius: 5px;
display: flex;
align-items: center;
}
.marquee{
white-space: nowrap;
display: inline-block;
padding-left: 100%;
animation: marquee 10s linear infinite;
font-size: 1.8rem;
font-weight: 700;
color: #fff;
}
@keyframes marquee{
0%{
transform: translateX(0);
}
100%{
transform: translateX(-100%);
}
}
.hero{
position: relative;
height: calc(100vh - 100px);
margin-top: 20px;
overflow: hidden;
}
.hero img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(0.6);
}
.overlay-text{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
color: white;
text-align: center;
padding: 1rem 2rem;
max-width: 80vw;
}
.overlay-text h1{
font-size: 3rem;
margin-bottom: 0.5rem;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
@media(max-width:768px){
.marquee-container{
width: 90vw;
}
.overlay-text h1{
font-size: 2rem;
}
.overlay-text p{
font-size: 1rem;
}
}
</style>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landing Page with Marquee</title>
</head>
<body>
<nav>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="marquee-container">
<div class="marquee">Awesome Youtube Channel - Vijay CompEducation</div>
</div>
<section class="hero">
<img src="https://img.freepik.com/free-photo/fuji-mountain-with-milky-way-night_335224-104.jpg?semt=ais_hybrid&w=740&q=80">
<div class="overlay-text">
<h1>Welcome to my channel</h1>
<p>Innovating the future with passion and precision.</p>
</div>
</section>
</body>
</html>
No comments:
Post a Comment