Skip to content

Commit

Permalink
About Me Section Completed
Browse files Browse the repository at this point in the history
  • Loading branch information
Miramoop committed Apr 20, 2023
1 parent 14f15ca commit 76363d2
Show file tree
Hide file tree
Showing 3 changed files with 261 additions and 2 deletions.
107 changes: 105 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,105 @@
<!--Favicon-->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<!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>Juniperistic Coding</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<!--Header-->
<div id="header">
<div class="container">
<nav>
<img src="img/logo.png" 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>Compsci Student</p>
<h1>Hi, I'm <span>Miranda</span> <br> Morris From The U.S.</h1>
</div>
</div>
</div>

<!--About-->
<div id="about">
<div class = "container">
<div class = "row">
<div class="about-col-1">
<img src="img/user.png" alt="user">
</div>
<div class="about-col-2">
<h1 class="sub-title">About Me</h1>
<p>
Hello, I'm a CompSci Student who dabbles in all sorts of projects!
I tend to work on programming various programs and games in my spare
time. I enjoy the creativity aspect the most by coming up with my
own ideas and I also enjoy creating the art as well!
</p>

<div class="tab-titles">
<p class="tab-links active-link" onclick="opentab('skills')">Skills</p>
<p class="tab-links" onclick="opentab('experience')">Experience</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
</div>

<div class="tab-contents active-tab" id="skills">
<ul>
<li><span>Visual Studio</span><br>Developing Programs & Games</li>
<li><span>Visual Studio Code</span><br>Developing Portfolio Website</li>
<li><span>Unity Hub</span><br>Developing 2D & 3D Games</li>
<li><span>Aseprite</span><br>Creating Sprites For Games</li>
<li><span>C#</span><br>Developing Programs & Games</li>
</ul>
</div>

<div class="tab-contents" id="experience">
<ul>
<li><span>2020 - Current</span><br>Retail Job</li>
</ul>
</div>

<div class="tab-contents" id="education">
<ul>
<li><span>2019 - Current</span><br>Compsci at Davenport University</li>
</ul>
</div>

</div>
</div>
</div>
</div>
<script>
var tablinks = document.getElementsByClassName("tab-links");
var tabcontents = document.getElementsByClassName("tab-contents");

function opentab(tabname){
for(tablink of tablinks){
tablink.classList.remove("active-link");
}

for(tabcontent of tabcontents){
tabcontent.classList.remove("active-tab");
}

event.currentTarget.classList.add("active-link");
document.getElementById(tabname).classList.add("active-tab");
}

</script>
<!--Favicon-->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">


</body>
</html>


Empty file removed main.js
Empty file.
156 changes: 156 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}

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

#header{
width:100%;
height:100vh;
background-image: url(img/background.png);
background-size: cover;
background-position: center;
}

.container{
padding: 10px 10%;
}

nav{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}

.logo{
width: 140px;
}

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: #ff004f;
position: absolute;
left: 0;
bottom: -6px;
transition: 0.5s;
}

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

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

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

.header-text h1 span{
color: black;
}

/*--About--*/
#about{
padding: 80px 0;
color: gray;
}

.row{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.about-col-1{
flex-basis: 35%;
}

.about-col-1 img{
width: 100%;
border-radius: 15px;
}

.about-col-2{
flex-basis: 60%;
}

.sub-title{
font-size: 60px;
font-weight: 600;
color: #fff;
}

.tab-titles{
display: flex;
margin: 20px 0 40px;
}

.tab-links{
margin-right: 50px;
font-size: 18px;
font-weight: 500;
cursor: pointer;
position: relative;
}

.tab-links::after{
content: '';
width: 0;
height: 3px;
background: #ff004f;
position: absolute;
left: 0;
bottom: -8px;
transition: 0.5s;
}

.tab-links.active-link::after{
width: 50%;

}

.tab-contents ul li{
list-style: none;
margin: 10px 0;

}

.tab-contents ul li span{
color: purple;
font-size: 14px;

}

.tab-contents{
display: none;
}

.tab-contents.active-tab{
display: block;
}

0 comments on commit 76363d2

Please sign in to comment.