-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
51 lines (46 loc) · 1.79 KB
/
contactme.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<meta descrption="Personal CV of Mohamad Buchr Charaf">
<title>Mohamad Buchr Charaf Site</title>
<link rel="stylesheet" href="css/styles.css">
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<p class="navbar-brand">Personal Website</p>
</div>
<ul class="nav navbar-nav navbar-right">
<li id="home"><a href="index.html">HOME</a></li>
<li id="login"><a href="contactme.html">Contact me</a></li>
</ul>
</div>
</nav>
</head>
<body>
<div class="container">
<p> <strong>gmail:</strong>[email protected]</p>
<p> <strong>E-Mail:</strong>[email protected]</p>
<p> <strong>GitHub</strong><a href="https://github.com/MBCharaf">MBCharaf</a></p>
<p> <strong>LinkedIn</strong> <a href="https://www.linkedin.com/in/mbeshercharaf">mbeshercharaf</a></p>
</div>
<hr>
<div class="container">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="yourName" value=""><br>
<label>Your E-mail: </label>
<input type="email" name="yourEmail" value=""><br>
<label>Your Message:</label><br>
<textarea name= "YourMessage" rows="8" cols="80"></textarea><br>
<input type="submit" name="" >
</form>
</div>
<div class="footer-padding"></div>
<div class="footer">
<p>Made by <a href="https://github.com/MBCharaf">MBCharaf</a> </p>
</div>
</div>
</body>
</html>