-
Notifications
You must be signed in to change notification settings - Fork 1
/
photoprofil.php
30 lines (24 loc) · 1.25 KB
/
photoprofil.php
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
<?php include 'includes/header.php'; ?>
<title>Profil picture</title>
<?php include 'includes/navbar.php'; ?>
<!-- Three columns of text below the carousel -->
<div class="container">
<div class="row">
<div class="col-lg-4"> <!--debut colonne 1 -->
<img class="img-circle" src="image/img.png" alt="Generic placeholder image">
<h2>Photo 1</h2>
<p><a class="btn btn-default" href="parcourir.php" role="button">Update picture ;) »</a></p>
</div><!-- fin colonne 1 -->
<div class="col-lg-4"> <!-- debut colonne 2 -->
<img class="img-circle" src="image/img0.png" alt="Generic placeholder image">
<h2>Photo 2</h2>
<p><a class="btn btn-default" href="parcourir.php" role="button">Update picture ;) »</a></p>
</div><!-- fin colonne 2 -->
<div class="col-lg-4"> <!-- debut colonne 3 -->
<img class="img-circle" src="image/img2.png" alt="Generic placeholder image">
<h2>Photo 3</h2>
<p><a class="btn btn-default" href="parcourir.php" role="button">Update picture ;) »</a></p>
</div><!-- fin colonne -->
</div><!-- /.row -->
</div>
<?php include 'includes/footer.php' ?>