-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
89 lines (74 loc) · 2.41 KB
/
contact.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
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="static/contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<nav class="navbar">
<a href="#" class="logo">Portfolio.</a>
<div id="contact-info" style="display: none;">
<h3>Contact Information</h3>
<p>Email: [email protected]</p>
<p>Phone: (+221) 77 152 29 43</p>
</div>
<ul>
<li class="active"><a href="#">Home</a></li>
<li><a href="index.html">About</a></li>
<li><a href="skill.html">Skills</a></li>
<li><a href="portofolio.html">Portfolio</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="contact.html" id="contact-link">Contact</a></li>
</ul>
</nav>
<div class="MONcontact">
<h1>Contact-me</h1>
</div>
<header>
<div class="items">
<div class="container">
<h1>Contact</h1>
<h4>Interested in working with me? Let's talk</h4>
<form class="formulaire" action="index.html">
<div>
<input class="interior" type="text" placeholder="Enter your name" name="">
</div>
<div>
<input class="interior" type="email" placeholder="Entrez votre adresse email" name="">
</div>
<div>
<input class="interior" type="text" placeholder="Enter subjet" name="">
</div>
<div>
<input class="interior" id="message" type="text" placeholder="Enter your massage" name="">
</div>
<div class="btn-sci">
<a href="#" class="btn">Send</a>
</div>
</form>
</div>
<div id="contact">
<div class="name">
<h1>Ramatoulaye Diawane</h1>
<p class="role">Bioinformatician | web developer</p>
</div>
<h5>Don't hesitate !</h5>
<p class="para">Fell free to contact me ! I am always open to new collaborations and discussions about new projects, ideas, etc.., to be part of your vision. Whether in bioinformatics or web development.</p>
<div class="coordonnees">
<p>
<i class="fas fa-envelope"></i>
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
<i class="fas fa-phone"></i>
<a href="tel:+221771522943">+221 77 152 29 43</a>
</p>
</div>
</div>
</div>
</header>
</body>
</html>