-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
102 lines (86 loc) · 3.59 KB
/
portfolio.html
File metadata and controls
102 lines (86 loc) · 3.59 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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>À propos - Robbie Lens Photographie</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/a-propos.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope&family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a href="index.html" class="lien-icone">
<img src="images/logo.png" alt="Logo Robbie Lens" >
</a>
<div>
<a href="index.html"> Accueil</a>
<a href="a-propos.html"> À propos</a>
<a href="portfolio.html"> Portfolio</a>
</div>
</nav>
</header>
<main class="a-propos-main">
<section>
<h1>À propos</h1>
<div class="carre-contenu">
<p>
"Photographe depuis plus de 5 ans, je réalise des reportages aux photos dynamiques et pertinentes pour vos
projets de communication. Créativité, qualité, et sérénité pour vous ! Je gère tout, depuis la direction
artistique, la réalisation du reportage, jusqu’à la livraison de vos photos retouchées, prêtes à l’emploi."
</p>
<h2>Services</h2>
<ul>
<li>Portrait seul ou à plusieurs,</li>
<li>Shooting mode,</li>
<li>Retouches sur mesure,</li>
<li>Développement. </li>
</ul>
</div>
<div>
<a href="portfolio.html" class="cta">VOIR MON PORTFOLIO</a>
</div>
</section>
<section class="section-tarifs">
<h2>Tarifs</h2>
<table>
<thead>
<tr>
<th>Designation</th>
<th>Quantité</th>
<th>Prix</th>
</tr>
</thead>
<tbody>
<tr>
<td>Retouches photo studio professionnel</td>
<td>x800 photos</td>
<td>3200€/800 photos</td>
</tr>
<tr>
<td>Assistant photo lumiere professionnel</td>
<td>x2sets studio</td>
<td>1500€/journée</td>
</tr>
</tbody>
</table>
</h2>
</section>
</main>
<footer>
<a href="index.html" class="lien-icone">
<img src="images/logo.png" alt="Logo Robbie Lens" >
</a>
<div>
<a href="https://twitter.com/" target="_blank" class="lien-icone">
<img src="images/twitter.png" alt="Logo Twitter">
</a>
<a target="_blank" href="https://www.instagram.com/" class="lien-icone">
<img src="images/instagram.png" alt="Logo Instagram">
</a>
</div>
</footer>
</body>
</html>