Skip to content

Commit

Permalink
I edited my heading
Browse files Browse the repository at this point in the history
  • Loading branch information
Onna-bancho committed Aug 14, 2023
1 parent f9b4c0b commit a8ce23b
Show file tree
Hide file tree
Showing 2 changed files with 286 additions and 0 deletions.
159 changes: 159 additions & 0 deletions Project.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
body {
background-color: #200c4b;
padding: 0;
margin: 0;
color: white;
}


Nav li, a {
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 16px;
color: #edf0f1;
text-decoration: none;
list-style-type: none;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row-reverse;
background-color: #FF7200;
}
.nav_link{
list-style-type: none;
text-decoration: none;

}
.nav_link li{
display: inline-block;
padding: 0px 20px;
text-decoration: none;
}
.nav_link li a {
transition: all 0.3s ease 0s;
}
.nav_link li a:hover {
color: #31d3bd;
}


section {
padding: 20px;
}

.header {
text-align: center;
}

.flex-container {
display: flex;
font-style: italic;
font-size: large;
margin-top: auto;
text-align: center;
align-content: flex-start;

}

.flex-item2 {
display: flex;
width: 350px;
height: 250px;
align-items: right;
margin-right: auto;
}

.flex-item3 {
text-align: center;
font-style: normal;
font-size: 17px;
font-family: sans-serif;
margin-left: auto;
padding-top: 30px;
padding-right: 70px;
align-items: center;

}

.h2p {
text-align: center;
font-style: normal;
font-size: 17px;
font-family: sans-serif;
margin-left: auto;
padding-top: 30px;
padding-left: 60px;
align-items: center;

}

.flex-item4 {
width: 350px;
height: 250px;
align-items: left;
margin-left: auto;
}

.white {
background-color: rgb(248, 245, 245);
color: black;
}

.design {
display: flex;
width: 250px;
height: 250px;
align-items: right;
margin-right: auto;
border-radius: 50%;
}

.flex-item3 {
text-align: center;
font-style: normal;
font-size: 17px;
font-family: sans-serif;
margin-left: auto;
padding-top: 30px;
padding-right: 70px;
align-items: center;

}

.cornflowerblue {
margin-right: 120px;
margin-left: 120px;
padding: 50px;
}

.project {
background-color: rgb(4, 88, 213);
color: white;
height: 30px;
padding: 4px;
margin-top: 60px;
}

footer {
background-color: chocolate;
display: flex;
color: white;
}

ul {
list-style-type: none;
}

footer div {
padding: 15px;
}

li {
padding: 10px;
}

.span {
color: chocolate;
}
127 changes: 127 additions & 0 deletions Project.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project</title>
<link rel="stylesheet" href="Project.css">
</head>
<body>
<header>
<nav>
<ul class="nav_link">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="#">Projects</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">More</a>
</li>
<li>
<a href="#">Contact</a>
</li>

</ul>

</nav>
</header>

<h1 class="header">Our <span class="span">Projects</span></h1>

<section>
<div class="flex-container">
<img src="resources/photo1.jpg" class="flex-item2" alt=" a project">
<div class="h2p">
<h2>What We Do?</h2>
<p> Our Project is a platform where you can
build and improve your programming skills.
</p>
</div>
</div>
</section>

<section>
<div class="flex-container">
<div class="flex-item3">
<h2>Why We Are Here?</h2>
<p> We are here to bring out skills but,specially
to bring more women into tech by traing them and
making tech accessible for them to learn and improve
their skills
</p>
</div>
<img src="resources/photo2.jpg" class="flex-item4" alt="a project">
</div>
</section>

<section>
<div class="flex-container">
<img src="resources/photo1.jpg" class="flex-item2" alt=" a project">
<div class="h2p">
<h2>Is This Platform Only For Women?</h2>
<p>Not exactly but technicly yes cause we
believe women are the future tech.
</p>
</div>
</div>
</section>

<section class="white">
<div class="flex-container">
<img src="resources/photo2.jpg" class="design" alt=" a project">
<div class="h2p">
<h2>join the community and begin learning</h2>
</div>
</div>
</section>

<section class="cornflowerblue">
<div class="flex-container">
<div class="flex-item3">
<h2 class="texts">Check our community projects</h2>
</div>
<button class="project">
Projects
</button>
</div>
</section>

<footer>
<div>
<ul>
<li>Home</li>
<li>Contact</li>
</ul>
</div>
<div>
<ul>
<li>About</li>
<li>Programs</li>
</ul>
</div>
<div>
<ul>
<li>Projects</li>
<li>Aluminis</li>
</ul>
</div>
<div>
<ul>
<li>Career nav community</li>
<li>&copy; 2023</li>
</ul>
</div>
</footer>


</body>

</html>

0 comments on commit a8ce23b

Please sign in to comment.