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
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
<div class="home">
<div class="flexing">
<div class="content">
<p>What is Version Control?</p>
<p>What is Git?</p>
<p>What is Github?</p>
<a href="#what-is-version-control">What is Version Control?</a>
<a href="#what-is-git">What is Git?</a>
<a href="#what-is-github">What is Github?</a>
</div>
<div class="image">
<img src="assets/7.png">
Expand All @@ -45,7 +45,7 @@

<!-- About section -->
<div class="about" >
<div class="version-control" id="about">
<div id="what-is-version-control" class="version-control" id="about">
<h2>What is Version Control?</h2><br>
<p>
Version control, also known as source control, is the practice of tracking and managing changes to software code.<br>
Expand All @@ -69,7 +69,7 @@ <h3>Benefits of version control systems</h3>
<br>
</div>

<div class="git">
<div id="what-is-git" class="git">
<div class="text">
<h2>What is Git?</h2><br>
<p>
Expand Down Expand Up @@ -172,7 +172,7 @@ <h4>✦MERGE YOUR BRANCH INTO PARENT BRANCH</h4><br>
</div>


<div class="github">
<div id="what-is-github" class="github">
<h2>What is Github?</h2><br>
<p>
GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.<br>
Expand Down
15 changes: 11 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,20 @@ h2{

}

.home p{
padding-top:10px;
padding-bottom:10px;
height:10vh;
.home a{
box-sizing: border-box;
margin-top:10px;
margin-bottom:10px;
height:fit-content;
/* clip-path: circle(50%); */
clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 95%, 0 100%);
/* height: 90vh; */
color:inherit;
text-decoration: none;
}

.home a:hover{
text-decoration: underline;
}

.content{
Expand Down