-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed the css of the pages and added contact page
- Loading branch information
Showing
5 changed files
with
220 additions
and
115 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,19 @@ | ||
.contact .heading{ | ||
font-size: 50px; | ||
color:rgb(134, 134, 134); | ||
font-family: 'Times New Roman', Times, serif; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.input-group-1{ | ||
margin-top: 70px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.input-group-2{ | ||
margin: 40px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} |
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,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link rel="stylesheet" href="contact.css"> | ||
</head> | ||
|
||
<body> | ||
<nav class="nav"> | ||
<h1><a class="logo">VOICE.py</a></h1> | ||
<div class="nav-right"> | ||
<h1><a href="">Home</a></h1> | ||
<h1><a href="">Features</a></h1> | ||
<h1><a href="contact.html">Contact</a></h1> | ||
<h1><a href="">About</a></h1> | ||
<h1><a href="faq.html">FAQ</a></h1> | ||
</div> | ||
</nav> | ||
<section class="contact" id="contact"> | ||
<h2 class="heading">Contact Us </h2> | ||
<form action=""> | ||
<div class="input-group-1"> | ||
<div class="input-box"> | ||
<input type="text" placeholder="Full Name"> | ||
<input type="email" placeholder="Email"> | ||
</div> | ||
<div class="input-box"> | ||
<input type="number" placeholder="Phone Number"> | ||
<input type="text" placeholder="Subject"> | ||
</div> | ||
</div> | ||
<div class="input-group-2"> | ||
<textarea name="" id="" cols="30" rows="10" placeholder="Your Message"></textarea> | ||
<input type="submit" value="Send message" class="btn"> | ||
|
||
</div> | ||
</form> | ||
|
||
</section> | ||
</body> | ||
|
||
</html> |
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
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
Oops, something went wrong.