Skip to content
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
Binary file added 2Totoro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Porfolio_Website

Name: Unnati Goel
Roll No: 22f1000672
Email: 22f1000672@student.onlinedegree.iitm.ac
Working Link ofPortfolio Site: https://unnativ2.github.io/Porfolio.github.io/
Link To my Repository: https://github.com/UnnatiV2/Porfolio.github.io


46 changes: 46 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Totoro</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div id ="header">



<div class="container">

<nav> <img src="logo2.jpg" class="logo">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#"> About </a></li>
<li> <a href="#">Services</a></li>
<li> <a href="#">Portfolio</a></li>
<li> <a href="#">Contact</a></li>
</ul>

</nav>

<div class="header-text">

<p>Web Devloper </p>
<h1>Hi, I'm <span>Totoro</span><br>From Tokorozawa</h1>
<img src="2Totoro.png"class = " totoro">


</div>
</div>
</div>






</body>
</html>
Empty file added index.js
Empty file.
Binary file added logo2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
112 changes: 112 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@

*{
margin: 0;
padding: 0;
font-family: 'Poppings', sans-serif;
box-sizing: border-box;
}

body{
background: #080808;
color: #fff;
}

/*
#header{

margin-left: 670px;
margin-top: 40px;
width:60%;
height: 80vh;
background-image: url(Images/2Totoro.png);
background-size:cover;


}*/

.totoro{
width: 70%;

margin-left: 600px;
background-size:cover;
}


.container{

padding: 10px 10%;

}


nav{
display: flex;
align-items:center;
justify-content: space-between;
flex-wrap: wrap;
/* background-color:burlywood;*/

}
.logo{

width: 100px;

/* background-color: burlywood;*/

}


nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;

}

nav ul li a{
color: #fff;
text-decoration:none;
font-size: 18px;
position: relative;
}

nav ul li a::after
{
content: '';
width: 0;
height: 3px;
background: #ffb95e;
position: absolute;
left: 0;
bottom: -5px;
transition:0.5s ;

}


nav ul li a:hover::after
{
width: 100%;
}



.header-text
{
margin-top: 20px;
font-size: 30px;


}

.header-text h1
{
margin-top: 20px;
font-size: 60px;

}

.header-text h1 span{

color: #ffb95e;
}