-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from MAlshaik/main
Started layout of home page
- Loading branch information
Showing
4 changed files
with
128 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.
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,30 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Transcript Editor</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
|
||
<body> | ||
<div class="hero"> | ||
<nav> | ||
<img src="images/menu.png" class="menu-img"> | ||
<img src="images/Logo.png" class="logo"> | ||
<ul> | ||
<li><a href="">Latest</a></li> | ||
<li><a href="">Modern</a></li> | ||
<li><a href="">Contemporary</a></li> | ||
<li><a href="">Affordable</a></li> | ||
</ul> | ||
<button type="button"><span></span></button> | ||
</nav> | ||
|
||
<div class="text-container"> | ||
<h1>Revolutionizing <br> Video Editing</h1> | ||
<p>Using the latest AI technology we provide a new and improved way to edit your videos.</p> | ||
<a href="">Upload your video</a> | ||
|
||
|
||
</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,98 @@ | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'poppins', sans-serif; | ||
box-sizing: border-box; | ||
|
||
} | ||
|
||
.hero { | ||
background: #1d2026; | ||
min-height: 100vh; | ||
width: 100%; | ||
color: #fff; | ||
position: relative; | ||
|
||
} | ||
|
||
nav{ | ||
display: flex; | ||
align-items: center; | ||
padding: 20px 8%; | ||
} | ||
|
||
nav .menu-img { | ||
width: 25px; | ||
margin-right: 20px; | ||
cursor: pointer; | ||
} | ||
|
||
nav .logo { | ||
width: 160px; | ||
cursor: pointer; | ||
|
||
} | ||
|
||
nav ul{ | ||
flex: 1; | ||
text-align: right; | ||
|
||
} | ||
|
||
nav ul li{ | ||
display: inline-block; | ||
list-style: none; | ||
margin: 0 20px; | ||
} | ||
|
||
nav ul li a{ | ||
text-decoration: none; | ||
color: white; | ||
} | ||
|
||
button{ | ||
background: #efefef; | ||
height: 30px; | ||
width: 60px; | ||
border-radius: 20px; | ||
border: 0; | ||
outline: 0; | ||
cursor: pointer; | ||
} | ||
|
||
button span { | ||
display: block; | ||
background: #999; | ||
height: 26px; | ||
width: 26px; | ||
border-radius: 50%; | ||
margin-left: 2px; | ||
|
||
} | ||
|
||
.text-container{ | ||
max-width: 600px; | ||
margin-top: 7%; | ||
margin-left: 50%; | ||
} | ||
|
||
.text-container h1{ | ||
font-size: 80px; | ||
font-weight: 400; | ||
} | ||
|
||
.text-container p{ | ||
font-size: 25px; | ||
} | ||
|
||
.text-container a{ | ||
text-decoration: none; | ||
background: #00986f; | ||
padding: 10px 40px; | ||
display: inline-block; | ||
color: #fff; | ||
font-size: 18px; | ||
margin-top: 30px; | ||
border-radius: 30px; | ||
|
||
} |