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

waan dhamays tiray #2

Open
wants to merge 1 commit into
base: main
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
Binary file added images/arrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/p3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/services-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/services-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/services-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/team6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
109 changes: 109 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>WebSite Development</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<div class="main_container" id="home">

<div class="navbar">
<div class="logo">
<a href="#">abdi market</a>
</div>
<div class="navbar_items">
<ul>
<li><a href="#">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#services">services</a></li>
<li><a href="#contactus">contact</a></li>
<li><a href="#ourteam">our team</a></li>
</ul>
</div>
</div>

<div class="banner_image">
<div class="banner_content">
<h1>Only I can change my life.<br> <span>No one can do it for me.<span></h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestias, neque.</p>
</div>
</div>

<div class="about" id="about">
<h1 class="title">About Us</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis, eveniet temporibus reprehenderit. Veniam sunt corrupti necessitatibus quam, quia doloribus nesciunt ut eveniet, alias aspernatur eum perferendis commodi doloremque recusandae tenetur quis cumque voluptatibus officiis ea excepturi dignissimos! Repellat molestias iusto dicta facere ipsum, harum maiores illum laborum tenetur? Explicabo, cupiditate!</p>
<div class="btn"><a href="#">Learn More</a></div>
</div>

<div class="services" id="services">
<h1 class="title">our Services</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quibusdam quia, porro repellendus dolore repudiandae, accusantium corporis harum vel iste suscipit maiores provident ullam itaque libero minus nesciunt consequatur iusto numquam asperiores quod fugiat veniam blanditiis.</p>
<div class="diff_services">
<div class="diff_services_item">
<img src="images/services-1.png" alt="service_image">
<h3 class="sub_title">Web Development</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
<div class="diff_services_item">
<img src="images/services-2.png" alt="service_image">
<h3 class="sub_title">App Development</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
<div class="diff_services_item">
<img src="images/services-3.png" alt="service_image">
<h3 class="sub_title">PSD to HTML</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
</div>
</div>
<div class="contactus" id="contactus">
<h1 class="title">contact us</h1>
<div class="form_wrapper">
<div class="form_input">
<input type="text" placeholder="Email">
</div>
<div class="form_input">
<input type="text" placeholder="Subject">
</div>
<div class="form_input">
<textarea placeholder="Message"></textarea>
</div>
<div class="btn">
<a href="#">Submit</a>
</div>
</div>
</div>


<div class="ourteam" id="ourteam">
<h1 class="title">our team</h1>
<div class="ourteam_wrapper">
<div class="team-1 team">
<div class="team_members" data-name="nathan john"><img src="images/team1.jpg" alt="Team_Images"></div>
<div class="team_members" data-name="Alyssa Healy"><img src="images/team2.jpg" alt="Team_Images"></div>
<div class="team_members" data-name="Alec Stewart"><img src="images/team3.jpg" alt="Team_Images"></div>
</div>
<div class="team-2 team">
<div class="team_members" data-name="Michael Rippon"><img src="images/team4.jpg" alt="Team_Images"></div>
<div class="team_members" data-name="Meg Lanning"><img src="images/team5.jpg" alt="Team_Images"></div>
<div class="team_members" data-name="Sophie Devine"><img src="images/team6.jpg" alt="Team_Images"></div>
</div>
</div>
</div>


<div class="footer">
<a href="#">© 2019 Coding Market</a>
</div>


<div class="arrow">
<a href="#home"><img src="images/arrow.png" alt="up_arrow"></a>
</div>
</div>

</body>
</html>
256 changes: 256 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,256 @@
@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}

h1.title{
margin-bottom: 20px;
color: #444444;
font-family: 'Allura', cursive;
text-transform: uppercase;
font-size: 38px;
word-spacing: 25px;
letter-spacing: 5px;
}

p{
margin-bottom: 15px;
font-size: 14px;
line-height: 20px;
color: #a9a9a9;
}

.btn a {
width: 180px;
height: 35px;
line-height: 35px;
border: 2px solid #fb2274;
color: #fb2274;
display: block;
margin: 25px auto 0;
text-align: center;
}

.main_container{
position: relative;
}

/* Navigation Bar */
.navbar{
width: 100%;
height: 65px;
position: absolute;
display: flex;
justify-content: space-around;
align-items: center;
}

.logo a{
font-family: 'Allura', cursive;
font-size: 32px;
color: #fb2274;
transition: 0.5s;
}

.logo a:hover {
color: white;
}

.navbar_items ul{
display: flex;
}

.navbar_items ul li{
margin: 0 10px;
}

.navbar_items ul li a{
text-transform: uppercase;
color: #fff;
}

/* banner_image */
.banner_image{
background: url('images/p3.jpg') no-repeat top center;
background-size: cover;
width: 100%;
height: 600px;
display: flex;
justify-content: center;
align-items: center;
}

.banner_content{
text-align: center;
color: #fff;
}

.banner_content h1{
text-transform: uppercase;
line-height: 38px;
margin-bottom: 15px;
}

.banner_content h1 span{
color: #fb2274;
}


/* About */
.about,
.services,
.contactus,
.ourteam{
text-align: center;
padding: 5% 10%;
}

/* Services */
.services{
background: #f5f5f5;
}

.diff_services {
margin-top: 35px;
display: flex;
justify-content: space-between;
}

.diff_services .diff_services_item {
width: 30%;
}

.diff_services .diff_services_item img {
width: 100%;
margin-bottom: 25px;
}

.diff_services .diff_services_item h3 {
color: #fb2274;
margin-bottom: 15px;
}

/* Contact us */
.form_wrapper .form_input{
margin-bottom: 15px;
}

.form_wrapper .form_input input[type="text"]{
width: 250px;
padding: 12px 20px;
border: 1px solid #ccc;
}

.form_wrapper .form_input textarea{
width: 250px;
padding: 12px 20px;
height: 80px;
resize: none;
border: 1px solid #ccc;
}
/* our team */
.ourteam{
background: #f5f5f5;
}

.ourteam_wrapper{
display: flex;
flex-direction: column;
}

.ourteam_wrapper .team{
display: flex;
justify-content: space-between;
}

.ourteam_wrapper .team-1.team{
margin-bottom: 25px;
}

.ourteam_wrapper .team_members{
width: 30%;
height: auto;
cursor: pointer;
overflow: hidden;
position: relative;
}

.ourteam_wrapper .team_members img{
display: block;
width: 100%;
height: auto;
transition: all 0.5s ease;
}

.ourteam_wrapper .team_members:hover img{
transform: scale(1.1);
}

/* footer */
.footer{
width: 100%;
text-align: center;
background: #444444;
padding: 20px 0;
}

.footer a{
color: #fff;
}



@media (max-width: 720px){

.navbar{
height: auto;
flex-direction: column;
}

.logo{
margin-bottom: 25px;
}

.navbar_items ul{
flex-direction: column;
text-align: center;
}

.navbar_items ul li{
margin-bottom:5px;
}

.banner_content{
margin-top: 35px;
}

}


/* arrow */
.arrow{
position: fixed;
bottom: 25px;
right: 25px;
width: 40px;
height: 40px;
line-height: 50px;
text-align: center;
cursor: pointer;
background: #fb2274;
border-radius: 50%;
display: none;
}

.arrow img{
width: 20px;
height: 20px;
z-index: 1;
}