-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
67 lines (55 loc) · 2.49 KB
/
services.html
File metadata and controls
67 lines (55 loc) · 2.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>services</title>
</head>
<body>
<header>
<div class="container">
<h1><a href="index.html" class="colortitle">PhotoMasters</a></h1>
<nav>
<ul>
<li><a href="index.html" class="da">Accueil</a></li>
<li><a href="services.html" class="da">Services</a></li>
<li><a href="portfolio.html" class="da">Portfolio</a></li>
<li><a href="contact.html" class="da">Contact</a></li>
<li><a href="blogM.html" class="da">Blog</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="services">
<div class="container">
<h2>Nos Services</h2>
<p> </p>
<div class="services-grid">
<div style="text-align: center;">
<img src="https://www.mademoiselle-loyal.com/wp-content/uploads/2020/07/2-1-1080x675.jpg" class="bigim" height="200" height="200" alt="Photographie de mariage">
<h3>Photographie de mariage</h3>
<p>Nous immortalisons votre journee avec des photos exceptionnelles.</p>
</div>
<div style="text-align: center;">
<img src="https://i.pinimg.com/originals/3f/b2/c9/3fb2c976b056e2823e5b30c46c22bad8.jpg" class="bigim" height="200px" height="500px" alt="Photographie de portrait">
<h3>Photographie de portrait</h3>
<p>Capturer la beaut et la personnalit de chaque individu.</p>
</div>
<div style="text-align: center;">
<img src="https://www.naturephotographie.com/wp-content/uploads/2015/05/Touch-The-Sky.jpg" class="bigim" height="200" height="200" alt="Photographie de paysage">
<h3>Photographie de paysage</h3>
<p>Des paysages couper le souffle pris travers l'objectif d'un professionnel.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2023 PhotoMasters. All rights reserved</p>
</div>
</footer>
</body>
</html>