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

Contact page #13

Open
wants to merge 2 commits into
base: master
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
115 changes: 115 additions & 0 deletions contact page.html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<!Doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name= "viewport" content="width=device-width, initial-scale=1.0">

<title>Contact page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">

</head>
<body>
<section>
<div class= "container">
<div class="row">
<div class="col-12 col-sm-4" style="padding: 0px;">
<div class="contactinformation">
<div class="col-12">
<h2>Contact Info</h2>
<ul class = "info">
<li>

<span><i class="fa fa-map-marker" aria-hidden="true"></i></span>
<span>
Girlscript chapter Bialspur koni .
</span>
</li>
<li>
<span>
<i class="fa fa-envelope" aria-hidden="true"></i>
</span>
<span style="font-size: 12px">
[email protected]
</span>
</li>
<li>
<span>
<i class="fa fa-phone" aria-hidden="true"></i>
</span>
<span>
+9109793261
</span>
</li>
</ul>
</div>
<div>
<ul class ="abc">
<li> <a href="#"><i class="fa fa-facebook-official" aria-hidden="true"></i></a></li>
<li> <a href="#"><i class="fa fa-twitter-square" aria-hidden="true"></i></a></li>
<li> <a href="#"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a></li>
<li> <a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>

</ul>
</div>

</div>
</div>
<div class="col-12 col-sm-8">
<div class="contactForm">
<div class="row">
<h2>Send Message</h2>
</div>

<div class="formBox col-12">

<div class="row">
<div class="col-12 col-lg-6 col-md-6 col-sm-12" >
<div class="inputBox ">
<input type="text" name="" required>
<span>First Name </span>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="inputBox ">
<input type="text" name="" required>
<span>Last Name </span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="inputBox ">
<input type="text" name=""required>
<span>Email Adress </span>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<div class="inputBox ">
<input type="text" name=""required>
<span>Mobile Number</span>
</div>
</div>

</div>
<div class="row">

<div class="inputBox ">
<textarea name=""></textarea>
<span>Write your message here </span>
<br><br>
<button class="submit"> Send message </button>


</div>
</div>
</div>

</div>
</div>
</div>
</div>
</section>
</body>
</html>
Loading