-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
68 lines (58 loc) · 2.62 KB
/
contact.html
File metadata and controls
68 lines (58 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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="resources/css/Style.css">
</head>
<body>
<div class="navbar">
<nav>
<!--<img src="resources/images/my pic.png" alt="">-->
<H1 class="logo">I<span>S</span>K</H1>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="gallery.html">PICTURE GALLERY</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="quotation.html">FAVORITE QUOTIENT</a></li>
<li><a href="contact.html">CONTACT ME</a></li>
</ul>
</nav>
<div class="box">
<div class="container">
<form >
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
<input type="submit" value="Submit" class="btn">
</form>
</div>
</div>
<footer>
<div id="footer" class="footer-content">
<h3>I<span>S</span>K</h3>
<p>Created by Muhammad Ismail<br>Follow me on social media!</p>
<ul class="socials">
<li><a href="#" TARGET="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/IskProfessional" TARGET="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/muhammad-ismail-262924195/" TARGET="_blank"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>copyright ©2021 ISK. designed by <span>Muhammad Ismail </span></p>
</div>
</footer>
</div>
</body>
</html>