-
Notifications
You must be signed in to change notification settings - Fork 0
/
email_sent.html
76 lines (64 loc) · 2.74 KB
/
email_sent.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hassan TAJIRI Portfolio</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="/img/favicon.ico">
<!--Bootstrap css-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!--main css-->
<link rel="stylesheet" href="style.css">
</head>
<body onload="load()">
<!--navbar start-->
<nav class="navbar navbar-light fixed-top bg-light shadow-sm">
<div class="container-lg">
<a class="navbar-brand text-danger fw-bold fs-1" href="#">H.T</a>
<div class="dropdown">
<button class="btn btn-secondary btn-danger px-3 " type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
<i class="fas fa-bars"></i>
</button>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="dropdownMenuButton">
<li><a class="dropdown-item" href="#home">Accueil</a></li>
<li><a class="dropdown-item" href="#about">A-propos</a></li>
<li><a class="dropdown-item" href="#services">Services</a></li>
<li><a class="dropdown-item" href="#portfolio">Portfolio</a></li>
<li><a class="dropdown-item" href="#CV">CV</a></li>
<li><a class="dropdown-item" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!--navbar end-->
<!--Freelancer avaliable section start -->
<section class="freelancer-available py-5 bg-danger">
<div class="container-lg py-4">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="fs-1 text-white mb-4">Thank you for contacting me. I will get back to you as soon as possible !</h2>
<p class="text-light fs-5 mt-lg-4">Go back to the <a href="index.html"> homepage</a>.</p>
<a href="index.html" class="btn btn-outline-light">Home</a>
</div>
</div>
</div>
</section>
<!--Freelancer avaliable section end -->
<!--Footer section start-->
<footer class="footer border-top py-4">
<div class="container-lg">
<div class="row">
<div class="col-lg-12 text-center">
<p class="text-muted">© 2021 TAJIRI Hassan</p>
</div>
</div>
</div>
</footer>
<!--Footer section end-->
<!--Bootstrap js-->
<script src="js/bootstrap.bundle.min.js"></script>
<!--main js-->
<script src="/main.js"></script>
</body>
</html>