-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (72 loc) · 2.67 KB
/
contact.html
File metadata and controls
72 lines (72 loc) · 2.67 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
69
70
71
72
<!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>ZeirBraidi</title>
<link rel="stylesheet" href="css/index.css" type="text/css">
</head>
<body>
<header id="home">
<div>
<a href="index.html">
<img class="logo" src="images/Braidi-WD-logos.jpeg" alt="logo">
</a>
</div>
<nav class="menu">
<ul class="linkList">
<li><a href="index.html">Home</a></li>
<!-- <li><a href="#projects">Projects</a></li> -->
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="main-text">
<h1 class="main-title">Contact Us</h1>
<p class="main-p">If you wish to receive more information, fill out the following form</p>
<img class="aboutUs-img" srimages/Web-Development.jpg" alt="">
</div>
<form action="submit" method="post">
<ul class="centerForm">
<li>
<label for="name"></label>
<input type="text" id="name" name="user_name" placeholder="Name"/>
</li>
<li>
<label for="phone"></label>
<input type="text" id="name" name="phone" placeholder="phone"/>
</li>
<li>
<label for="mail"></label>
<input type="email" id="mail" name="user_email" placeholder="E-mail"/>
</li>
<li>
<button class="buttonForm" type="submit">Submit</button>
</li>
</ul>
</form>
<footer id="home">
<div>
<a href="index.html">
<img class="logo" src="images/Braidi-WD-logos.jpeg" alt="logo">
</a>
</div>
<div class="info">
<p style="font-size: smaller;";">zeirbraidi@gmail.com | www.linkedin.com/in/zeirbraidi</p>
</div>
<div class="redSocial">
<a href="https://github.com/imust1995" target="_blank">
<img class="icono-social" src="images/GitHub-Mark-Light-120px-plus.png" alt="git icon">
</a>
<a href="https://www.linkedin.com/in/zeirb/" target="_blank">
<img class="icono-social" src="images/In-White-96-Γäó.png" alt="in-icon">
</a>
<a href="https://instagram.com" target="_blank">
<img class="icono-social" src="images/instagram.png" alt="instagram icon">
</a>
</div>
</footer>
</body>
</html>