-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
54 lines (52 loc) · 2.44 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="../../dist/jsRealB.js"></script>
<script type="text/javascript" charset="utf-8" src="ExerciceDeStyle.js"></script>
<style type="text/css" media="screen">
.high-light{text-decoration: underline;}
.emphase {color: #FC6405; }
</style>
<title id="titre">Exercice de style</title>
</head>
<body id="body">
<h1>Un <em>exercice de style</em> à la
<a href="http://fr.wikipedia.org/wiki/Exercices_de_style" title="Exercices de style - Wikipédia" target="_blank">Queneau</a>
</h1>
<fieldset>
<legend>Choisir le temps, le genre et le nombre du récit <!-- ainsi que les éléments à mettre en évidence --></legend>
<select name="temps" id="temps" size="1" autocomplete="off">
<option value="p" selected="selected">présent</option>
<option value="i">imparfait</option>
<option value="ps">passé simple</option>
<option value="f">futur</option>
<!-- <option value="pc">passe composé</option> -->
</select>
<select name="genre" id="genre" size="1" autocomplete="off">
<option value="m" selected="selected">masculin</option>
<option value="f">féminin</option>
</select>
<select name="nombre" id="nombre" size="1" autocomplete="off">
<option value="s" selected="selected">singulier</option>
<option value="p">pluriel</option>
</select>
<select name="emphase" id="emphase" size="1" autocomplete="off">
<option value=" "></option>
<option value="narrateur">narrateur</option>
<option value="jeune-homme">jeune homme</option>
<option value="ami">ami</option>
<option value="voyageur">voyageur</option>
</select>
<div style="font-size:small">
Les mots <u>soulignés</u> indiquent les changements par rapport au texte précédent.<br/>
Les mots qui correspondent au choix dans le menu de droite sont <span class="fixed emphase">colorés</span>.
</div>
</fieldset>
<div id="texte"></div>
<hr/>
<div id="text"></div>
</body>
</html>