This repository has been archived by the owner on Oct 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 2.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>jQuery DOM Manipulation</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="app/application.css">
</head>
<body>
<div class="container">
<div class="row">
<!-- This is the data given to you for the exercise, do not remove! -->
<div id="data" class="col-sm-7">
<h2>Data</h2>
<div>
<label for="email">Email:</label>
<input type="text" name="email" id="email" value="[email protected]" autocomplete="off">
<span id="email-hint">This is not my email!</span>
</div>
<table class="table">
<thead>
<tr>
<th>Rang</th>
<th>Équipe</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<tr><td>1</td><td>Rugby Club Toulonnais</td><td>77</td></tr>
<tr><td>2</td><td>Montpellier Hérault Rugby</td><td>76</td></tr>
<tr><td>3</td><td>ASM Clermont </td><td>73</td></tr>
<tr><td>4</td><td>Stade Toulousain </td><td>69</td></tr>
<tr><td>5</td><td>Racing Métro 92</td><td>69</td></tr>
<tr><td>6</td><td>Castres Olympique</td><td>66</td></tr>
<tr><td>7</td><td>Stade Français </td><td>65</td></tr>
<tr><td>8</td><td>Union Bordeaux-Bègles</td><td>64</td></tr>
<tr><td>9</td><td>CA Brive-Corrèze </td><td>61</td></tr>
<tr><td>10</td><td>Aviron Bayonnais </td><td>54</td></tr>
<tr><td>11</td><td>Grenoble </td><td>53</td></tr>
<tr><td>12</td><td>Oyonnax</td><td>51</td></tr>
<tr><td>13</td><td>Perpignan</td><td>51</td></tr>
<tr><td>14</td><td>Biarritz Olympique </td><td>30</td></tr>
</tbody>
</table>
</div>
<!-- This div is used to output the JS tests, do not remove! -->
<div class="col-sm-5">
<h2>Results</h2>
<p>Hit <code>F5</code> to check your code again.</p>
<div id="results-wrapper">
<ul id="results" class="list-unstyled"></ul>
</div>
</div>
</div>
</div>
<!-- Including jQuery from the Google CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Including your code -->
<script src="application.js"></script>
<!-- Examiner :) -->
<script src="app/examiner.js"></script>
</body>
</html>