Skip to content

Commit

Permalink
Merge pull request #2 from MAlshaik/main
Browse files Browse the repository at this point in the history
Started layout of home page
  • Loading branch information
MAlshaik authored Jan 25, 2023
2 parents b05f60c + b92c8bf commit 055fafd
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 0 deletions.
Binary file added Frontend/images/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Frontend/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions Frontend/index.html
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>
98 changes: 98 additions & 0 deletions Frontend/styles.css
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;

}

0 comments on commit 055fafd

Please sign in to comment.