-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.html
87 lines (81 loc) · 3.34 KB
/
contact-us.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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="./css/style.css">
<link rel="stylesheet" href="./css/contact-me.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<nav>
<div class="container">
<div class="links">
<img src="./img/logo.png" alt="">
<ul id="navy">
<li>
<a class="home" href="./index.html">Home</a>
</li>
<li>
<a href="./index.html#project">Projects</a>
</li>
<li>
<a href="./index.html#pricing">Pricing</a>
</li>
<li>
<a href="./about-me.html">About Me</a>
</li>
<li>
<a href="#">Contact Me</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="contact">
<div class="container">
<div class="content">
<h1>CONTACT ME</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Labore corrupti delectus necessitatibus porro dolorum voluptate.</p>
</div>
<form action="">
<input type="text" placeholder="Enter Your Name">
<input type="email" placeholder="Enter Your Email">
<textarea type="text" placeholder="Message Here..." cols="30" rows="10"></textarea>
<input type="submit" value="Contact Me" >
</form>
</div>
</section>
<footer>
<div class="container">
<a href="https://www.facebook.com/mostafahpater"><i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com/HpaterMostafa"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/mostafa-hpater-95a491221/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.instagram.com/mostafa_hpater/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://github.com/mostafahpater/"> <i class="fa-brands fa-github"></i></a>
</div>
<div>
<ul id="links">
<li>
<a class="home" href="./index.html"> ♦ Home</a>
</li>
<li>
<a href="./index.html#project">♦ Projects</a>
</li>
<li>
<a href="./index.html#pricing">♦ Pricing</a>
</li>
<li>
<a href="./about-me.html">♦ About Me</a>
</li>
<li>
<a href="#">♦ Contact Me</a>
</li>
</ul>
<p>portfolio <a>Powerd By</a> Mostafa Hpater</p>
</div>
</footer>
</body>
</html>