-
Notifications
You must be signed in to change notification settings - Fork 0
/
apropos.html
92 lines (77 loc) · 2.96 KB
/
apropos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Haiti site touristique - Apropos</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navigation -->
<header class="topbar">
<nav>
<a href="index.html"><img src="img/photo_articles/haiti.png" class="mr-2" alt=""> Accueil</a>
<a href="articles.html" >Articles</a>
<a href="apropos.html" class="active">Apropos</a>
<a href="contact.html">Contact</a>
</nav>
<div class="social">
<a href="#" title="Facebook"><img src="img/fonts/twitter.svg" height="30px" alt="Facebook"></a>
<a href="#" title="Twitter"><img src="img/fonts/facebook.svg" height="30px" alt="Twitter"></a>
</div>
</header>
<!-- Header -->
<header class="bg-primary py-5 mb-5">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-lg-12">
<h1 class="display-4 text-white mt-5 mb-2">ABOUT THE PAGES</h1>
<p class="lead mb-5 text-white-50">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Non possimus ab labore provident mollitia. Id assumenda voluptate earum corporis facere quibusdam quisquam iste ipsa cumque unde nisi, totam quas ipsam.</p>
</div>
</div>
</div>
</header>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-md-8 mb-5">
<h2>What We Do</h2>
<hr>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. A deserunt neque tempore recusandae animi soluta quasi? Asperiores rem dolore eaque vel, porro, soluta unde debitis aliquam laboriosam. Repellat explicabo, maiores!</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis optio neque consectetur consequatur magni in nisi, natus beatae quidem quam odit commodi ducimus totam eum, alias, adipisci nesciunt voluptate. Voluptatum.</p>
<a class="btn btn-primary btn-lg" href="contact.html">Contact Us »</a>
</div>
<div class="col-md-4 mb-5">
<h2>Contact Us</h2>
<hr>
<address>
<strong>Proget HtmlCss</strong>
<br>45A Djeevs-Jean
<br>Dev, 791
<br>
</address>
<address>
<abbr title="Phone">P:</abbr>
(123) 456-7890
<br>
<abbr title="Email">E:</abbr>
<a href="mailto:#">name@example.com</a>
</address>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.row -->
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Website Haiti 2021</p>
</div>
<!-- /.container -->
</footer>
</body>
</html>