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
20 changes: 19 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h1 class="freelancing">
<input class="hired" type="button" value="HIRE ME">
</div>
</section>

<!-- This is where the contact code starts from.-->
<div class="contact-me">
<h4 style="font-weight: bolder; font-size: 40px;"><span id="shadow-contact-me">Contact</span> Me</h4>
<p style="font-size: 15px;margin-top: -20px;">Far far away,behind the word mountains,far from the countries
Expand Down Expand Up @@ -341,6 +341,24 @@ <h5 style="font-size: 12px;">WEBSITE</h5>
<p style="font-size: 9px;font-weight:100; ">yoursite.com</p>
</div>
</div>
<section class="contact">
<div class="cform">
<div class="cpic">
<img src="http://pluspng.com/img-png/png-men-men-png-495.png" class="cpic" alt="Profile Pic">
</div>
<div class="form">
<form action="" class="form">
<input style="margin-bottom:10px;" type="text" placeholder="Your Name" class="form1"> <br>
<input style="margin-bottom:10px;" type="text" placeholder="Your Email" class="form1"> <br>
<input style="margin-bottom:10px;" type="text" placeholder="Subject" class="form1"> <br>
<textarea style="margin-bottom:15px; " rows="10" cols="55" placeholder="Message" class="form2"></textarea>
<input id="send" type="button" value="SEND MESSAGE">
</form>
</div>

</div>

</section>



Expand Down
52 changes: 52 additions & 0 deletions styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,58 @@ margin-left: 50px
.myskills{
margin-top: 500px
}
/* some of thr contact code*/
section.contact{
margin-left: auto;
margin-right: auto;
width: 90%;

}
section div.cform div.cpic img.cpic {
width: 420px;
}
div img.cpic{
background-color: rgb(26, 26, 26);
margin-left: 170px;
background-size: cover;
}
div.cpic{
height: 40%;
}
section.contact div.cform{
display: flex;
}
section.contact div.form form.form{
margin-top: 38px;
/* margin-left: 30px; */

}
input#send{
padding: 25px;
width: 14em;
border-radius: 60px;
outline: none;
background-color: #ffbd39;
border: none;
font-weight: bolder;

}
div.form{
background-color: rgb(219, 219, 219);
width: 25em;
margin-left: 0%;
padding: 30px;


}
form.form{
margin-bottom: 50px;
}
form input.form1{
width: 30em;
height: 40px;
}

.contact-me{
width:900px;
height:500px;
Expand Down