-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
114 lines (102 loc) · 6.06 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="public/css/style.css">
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-light fixed-top">
<a class="navbar-brand" href="#">
Pierre-Elisée Flory
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index">My Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="work">My Work</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Contact Me <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
</header>
<main role="main">
<div class="starter-template">
<h1>Contact me right now !</h1>
<p class="lead">You can contact me for any reason through this form ! I'm always glad to hear from you and try to respond as quick as I can so don't hesitate sending a message.</p>
</div>
<div id="parallax" class="parallax" style="background-image: url('public/images/contact.jpg');min-height: 300px;max-width: 90%;margin: auto;"></div>
<section class="form">
<form action="">
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="validationTooltip01">First name</label>
<input type="text" class="form-control shadow p-3 mb-5 bg-white rounded" id="validationTooltip01" value="" placeholder="John" required>
<div class="valid-tooltip">
Looks good!
</div>
</div>
<div class="col-md-6 mb-3">
<label for="validationTooltip02">Last name</label>
<input type="text" class="form-control shadow p-3 mb-5 bg-white rounded" id="validationTooltip02" value="" placeholder="Doe" required>
<div class="valid-tooltip">
Looks good!
</div>
</div>
<div class="form-group col-md-8 col-12">
<label for="exampleInputEmail1" id="emailHelp">Your mail address</label>
<input type="email" class="form-control shadow p-3 mb-5 bg-white rounded" id="exampleInputEmail1" placeholder="[email protected]" aria-labelledby="emailHelp">
<p class="description">This is only required to identify in further discussions, we will not share your personnal information nor will we use it for any commercial intent.</p>
</div>
<div class="col-md-4 col-12">
<label for="reason-form">Reason for contact</label>
<select class="custom-select shadow mb-5 bg-white rounded" id="reason-form">
<option selected>Select a reason</option>
<option value="1">You just want more info</option>
<option value="2">You want to talk about a project</option>
<option value="3">You want to hire me</option>
<option value="4">You don't have any special reason ;)</option>
</select>
</div>
<div class="form-group col-12">
<label for="exampleFormControlTextarea1">Your message</label>
<textarea class="form-control shadow p-3 mb-5 bg-white rounded" id="exampleFormControlTextarea1" rows="3" placeholder="..."></textarea>
</div>
<button type="submit" class="btn btn-outline-success shadow p-3 mb-5 bg-white rounded">Send message</button>
</form>
</section>
</main>
<footer class="footer mt-auto py-3">
<div class="container" style="text-align: center;">
<span class="text-muted">Website developed by Me ©IN211 <a href="https://github.com/flory-ensta"
target="_blank" rel="noopener"><img src="public/images/github.png" alt="Github logo"></a></span>
</div>
</footer>
<!-- Bootstrap CDN -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
<script type="text/javascript" src="public/js/script.js"></script>
</body>
</html>