-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add files from landing page file for "landing page"..
- Loading branch information
1 parent
66a8ea1
commit 64b82e4
Showing
5 changed files
with
287 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title> Career Kit</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
<div class="navbar"> | ||
<div class="icon"> | ||
<h1 class="logo"> Career kit </h1> | ||
</div> | ||
<div class="menu"> | ||
<ul> | ||
<li ><a href="#">HOME</a></li> | ||
<li ><a href="#">ABOUT</a></li> | ||
<li ><a href="#">SERVICE</a></li> | ||
<li ><a href="#">CONTACT</a></li> | ||
</ul> | ||
</div> | ||
<div class="search"> | ||
<input class="srch" type="search" name="" placeholder="type a text"> <a href="#"> <button class="btn"> Search</button></a> | ||
</div> | ||
<div class="content"> | ||
<h1> <br> <span> Software <br> Development</span><br>Course </h1> | ||
<p class="par"> | ||
Welcome to "Mastering Software Development: From Beginner to Pro"<br> – the ultimate course for aspiring developers and seasoned professionals <br> Dive into the world of software development and unlock the skills needed to thrive in today's tech-driven landscape.</p> | ||
<button class="cn"> <a href="#">JOIN US</a></button> | ||
</div> | ||
<div class="form"> | ||
<h2>Login Here</h2> | ||
<input type="email" name="email" placeholder="Enter Email Here"> | ||
<input type="password" name="" placeholder="Enter Password Here"> | ||
<button class="btn"><a href="#">LOGin</a></button> | ||
<p class="link">Dont have an account<br> | ||
<a href="#">Sign up </a> here</a></p> | ||
<P class="liw">Log in with</P> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,243 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.main{ | ||
width: 100%; | ||
background-image: url(cube.jpg); | ||
background-position: center; | ||
background-size: cover; | ||
height: 100vh; | ||
|
||
} | ||
.navbar{ | ||
width: 1200px; | ||
height: 75px; | ||
margin: auto; | ||
|
||
} | ||
.icon{ | ||
width: 200px; | ||
float: left; | ||
height: 70px; | ||
} | ||
.logo{ | ||
color: green; | ||
font-size: 35px; | ||
font-family: Arial, Helvetica, sans-serif; | ||
padding-left: 20px; | ||
float: left; | ||
padding-top: 10px; | ||
} | ||
h1{ | ||
color: mint green; | ||
} | ||
.menu{ | ||
width: 400px; | ||
float: left; | ||
height: 70px; | ||
} | ||
ul{ | ||
float: left; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
ul li{ | ||
list-style: none; | ||
margin-left: 62px; | ||
margin-top: 27px; | ||
font-size: 14px; | ||
} | ||
ul li a{ | ||
text-decoration: none; | ||
color: white; | ||
font-family: Arial; | ||
font-weight: bold ; | ||
transition: 0.4s ease-out; | ||
} | ||
ul li a:hover{ | ||
color: orange; | ||
} | ||
.search{ | ||
width: 330px; | ||
float: left; | ||
margin-left: 270px; | ||
} | ||
.srch{ | ||
font-family: 'Times New Roman'; | ||
width: 200px; | ||
height: 40px; | ||
background: transparent; | ||
border: 1px solid orange; | ||
margin-top: 14px; | ||
color: white; | ||
border-right: none; | ||
font-size: 16px; | ||
float: left; | ||
padding: 10px; | ||
border-bottom-left-radius: 5px; | ||
border-top-left-radius: 5px; | ||
} | ||
.btn{ | ||
width: 100px; | ||
height: 40px; | ||
background: orange; | ||
border: 2px solid orange; | ||
margin-top: 13px; | ||
color: white; | ||
font-size: 15px; | ||
border-bottom-right-radius: 5px ; | ||
} | ||
|
||
.content{ | ||
width: 1200px; | ||
height: auto; | ||
margin: auto; | ||
color: white; | ||
position: relative; | ||
|
||
} | ||
|
||
.content .par{ | ||
padding-left: 20px; | ||
padding-bottom: 25px; | ||
font-family: Arial ; | ||
letter-spacing: 1.2px; | ||
line-height: height 30px; | ||
|
||
|
||
|
||
} | ||
.content h1{ | ||
font-family: 'Courier New', Courier, monospace; | ||
font-size: 50px; | ||
padding-left: 20px; | ||
|
||
letter-spacing: 2px; | ||
|
||
|
||
|
||
} | ||
|
||
.content .cn{ | ||
width: 160px; | ||
height: 40px; | ||
background: orange; | ||
border: none; | ||
margin: bottom 10px; | ||
margin-left: 18px; | ||
font-size: 18px; | ||
border-radius: 10px; | ||
cursor: pointer; | ||
transition: .4s ease; | ||
|
||
|
||
} | ||
.content .cn a{ | ||
text-decoration: none; | ||
color: black; | ||
transition: .3s ease; | ||
|
||
|
||
} | ||
.cn :hover{ | ||
background-color: wheat; | ||
|
||
|
||
} | ||
.content span{ | ||
color: orange; | ||
font-size: 60px; | ||
|
||
|
||
} | ||
|
||
.form{ | ||
width: 250px; | ||
height: 380px; | ||
background: rgb(82, 152, 152); | ||
position: absolute; | ||
top: 180px; | ||
left: 1050px; | ||
border-radius: 10px; | ||
padding: 25px; | ||
} | ||
.form h2{ | ||
|
||
width: 220px; | ||
font-family:sans-serif; | ||
text-align: center; | ||
color: orange; | ||
font-size: 22px; | ||
background-color: white; | ||
border-radius: 10px; | ||
margin: 2px; | ||
padding: 8px; | ||
|
||
|
||
|
||
} | ||
|
||
.form input{ | ||
width: 240px; | ||
height: 35px; | ||
background: transparent; | ||
border-bottom: 1px solid orange; | ||
border-top: none; | ||
border-right: none; | ||
color: white; | ||
border-left: none; | ||
font-size: 15px; | ||
letter-spacing: 1px; | ||
margin-top: 30px; | ||
font-family: sans-serif; | ||
} | ||
|
||
.form input :focus{ | ||
color: white; | ||
font-family: Arial; | ||
|
||
} | ||
|
||
.btn{ | ||
width: 240px; | ||
height: 40px; | ||
background: orange; | ||
border: none; | ||
margin-top: 30px; | ||
font-size: 18px; | ||
border-radius: 10px; | ||
cursor: pointer; | ||
color: white; | ||
transition: 0.4 ease; | ||
} | ||
|
||
.btn:hover{ | ||
background: white; | ||
color: orange; | ||
|
||
} | ||
.btn a{ | ||
text-decoration: none; | ||
color: black; | ||
font-weight: bold; | ||
|
||
} | ||
.form .link{ | ||
font-family: Arial, Helvetica, sans-serif; | ||
font-size: 17px; | ||
padding-top: 20px; | ||
text-align: center; | ||
|
||
} | ||
.form .link a{ | ||
text-decoration: none; | ||
color: orange; | ||
} | ||
|
||
.liw{ | ||
padding-top: 15px; | ||
padding-bottom: 10px; | ||
text-align: center; | ||
} |