-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e45f4d8
commit e2322ec
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" /> | ||
<link rel="stylesheet" href="contact.css"> | ||
|
||
</head> | ||
|
||
<body> | ||
<section class="contact"> | ||
<div class="content"> | ||
<h2>Contact Us</h2> | ||
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ab non reprehenderit magni voluptas quam | ||
facilis soluta, nostrum quaerat eveniet, itaque iusto illo culpa at neque modi esse reiciendis. Neque, | ||
similique.</p> | ||
</div> | ||
<div class="container"> | ||
<div class="contactInfo"> | ||
<div class="box"> | ||
<div class="icon"> | ||
<i class="fa-solid fa-location-dot"></i> | ||
</div> | ||
<div class="text"> | ||
<h3>Address</h3> | ||
<p>C-II 162A <br> New Ashok Nagar<br>Delhi 110096 | ||
</p> | ||
</div> | ||
</div> | ||
<div class="box"> | ||
<div class="icon"> | ||
<i class="fa fa-envelope" aria-hidden="true"></i> | ||
</div> | ||
<div class="text"> | ||
<h3>Email</h3> | ||
<p>ariseh584@gmail.com | ||
</p> | ||
</div> | ||
</div> | ||
<div class="box"> | ||
<div class="icon"> | ||
<i class="fa fa-phone" aria-hidden="true"></i> | ||
</div> | ||
<div class="text"> | ||
<h3>Phon No.</h3> | ||
<p>+91 9XXXX XXXXX | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="contactForm"> | ||
<form action=""> | ||
<h2>Send Massage</h2> | ||
<div class="inputbox"> | ||
<input type="text" required="required"> | ||
<span>Full Name</span> | ||
</div> | ||
<div class="inputbox"> | ||
<input type="text" required="required"> | ||
<span>Email</span> | ||
</div> | ||
<div class="inputbox"> | ||
<textarea required="required" name="" id="" cols="30" rows="5"></textarea> | ||
<span>Type your message....</span> | ||
</div> | ||
<div class="inputbox"> | ||
<input type="submit" value="Send"> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</body> | ||
|
||
</html> |