Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions Week-1/1.2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Week 1Assignment-Ashwanth</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">

<link rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
<body>
<nav class="navbar">
<i class="las la-bars"></i>
<i class="las la-home"></i>
<i class="las la-search"></i>
<i class="las la-volume-up"></i>
<i class="las la-user"></i>
<i class="lab la-spotify"></i>
<i class="las la-cog"></i>
<i class="lab la-soundcloud"></i>
</nav>
<main>
<div class="column">
<img src="https://vif1g.csb.app/src/assets/cattyboard.jpg">
</div>
<div class="column2">
<h3 >CattyBoard Top 100 Single Charts(11.06.36)</h3>
<h5 >Unknown Artist</h5>
<p >2016.Charts.100songs</p>
<div class="main_icons">
<a href = "javascript:void(0);"><i class="las la-play ">Play all</i></a>
<a href = "javascript:void(0);"> <i class="las la-plus">Add to</i></a>
<a href = "javascript:void(0);"><i class="las la-ellipsis-h">More</i></a>
</div>
</div>
</main>
<table>
<tr>
<td>1.</td>
<td>Cant stop the feeling</td>
<td>CrakefeetCatKid&Cyla</td>
<td>2:54</td>
<td>CATT CLOUD SYNC</td>
</tr>
<tr>
<td>2.</td>
<td>Panda</td>
<td>Cattee</td>
<td>4:06</td>
<td>CATT CLOUD SYNC</td>
</tr>
<tr>
<td>3.</td>
<td>Can't Stop The Feeling</td>
<td>Catin cimberlake</td>
<td>3:56</td>
<td>CATT CLOUD SYNC</td>
</tr>
<tr>
<td>4.</td>
<td>Work From Home</td>
<td>Cat Harmony feat Colla</td>
<td>3:04</td>
<td>CATT CLOUD SYNC</td>
</tr>

</table>
<footer>
<img src="https://vif1g.csb.app/src/assets/cattyboard.jpg" width="5%;">
<div class="footer_column1">
<p>If It Ain't Love</p>
<p> Catson Derula</p>
</div>
<div class="footer_column2 ">
<input type="range"min="0" max="100" >
<a href = "javascript:void(0);"><i class="las la-step-backward icons "></i></a>
<a href = "javascript:void(0);"><i class="las la-pause icons "></i></a>
<a href = "javascript:void(0);"> <i class="las la-step-forward icons"></i></a>
<a href = "javascript:void(0);"><i class="las la-undo-alt icons"></i></a>
<a href = "javascript:void(0);"> <i class="las la-random icons"></i></a>
</div>

</footer>
</body>

</html>
101 changes: 101 additions & 0 deletions Week-1/1.2/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
*{
margin:0 ;
font-family: 'Lato';
color: rgb(250, 251, 252);
font-weight: 1%;
}


.navbar{
/*background-color: #cbcece;*/
background:linear-gradient(130deg,#1ee269,#cb6fdd);
width:40px;;
position:absolute;
height:100%;

}
nav i{
padding-top:20%;
margin-top:40px;
margin-left:10px;
color:rgb(3, 3, 3);
}
main{
background:linear-gradient(25deg,#1acc79,#fc00ff,#ebb113);
display: flex;
font-weight: 1px;
}
.column1{
width:30%
}
.column2{
padding-top: 2%;
padding-left: 2%;
}
main img{
padding-top:10%;
padding-left:30%;
width:70%;
padding-bottom:2%;
}
.main_icons{
padding-top:80px;
}

table{
width:100%;
border-collapse: collapse;
margin-left: 50px;

}
td{
text-align: center;
padding:10px;
color: black;

}

td:nth-child(5n) {
color: #486bdd;
}
tr:nth-child(even) {
background-color: #cbcece;
}

footer{
/*background-color:#3c617d;*/
background:linear-gradient(120deg,#1acc79,#fc00ff,#ebb113);
bottom:0;
left:0;
position:fixed;
width:100%;
display:flex;
}
footer img{
padding:0.5% 0.5% 0.5% 0.5%;
}

.footer_column1{
padding-left:1%;

width:30%;
}
.footer_column2{
width:70%;
display: flex;
padding-left: 10%;
}
.icons{
padding: 10px 10px 20px 100px;
}
footer p{
padding-top:10px;
}
input[type="range"]{
padding-top:7%;
padding-left:7%;
position: fixed;
width:50%;
color:black;

}