-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.74 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tp angular js : Webmail</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js">
<!---[if it IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<ul class="nav nav-pills spacer">
<li class="active"><a href="">Boite de réception</a></li>
<li><a href="">Courrier indésirable</a></li>
<li><a href="">Brouillon</a></li>
<li><a href="">Envoyé</a></li>
</ul>
<table class="table table-striped table-hover">
<thead>
<th>De</th>
<th>À</th>
<th>Objet</th>
<th>Date</th>
</thead>
<tbody>
<tr class="clickable">
<td>Tamy</td>
<td>Anouchka</td>
<td>Kikou</td>
<td>03/07/2017</td>
</tr>
<tr class="clickable">
<td>Fabius</td>
<td>Anouchka</td>
<td>ça va ?</td>
<td>04/07/2017</td>
</tr>
</tbody>
</table>
<div class="well">
<h1>Bonjour</h1>
<p><label>De :</label> <span>Tamy</span></p>
<p><label>À :</label> <span>Anouchka</span></p>
<p><label>Date :</label> <span>04/07/2017</span></p>
</div>
<p>Kikou, tu vas bien ?</p>
</div>
</body>
</html>