Bonjour, j'ai commencé à crer mon site (voici mon fichier index.html ci-dessous).

Cependant, je voudrais introduire des bordures et des frames , je ne sais comment faire : dois-jecréer un autre fichier pour ces derniers.


Code html : Sélectionner tout - Visualiser dans une fenêtre à part
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
<title>Bienvenue sur mon site de rencontres</title>
</head>
<body>Inscription rapide et gratuite
 
 
<body bgcolor="#d2691e">
 
<br>
<br>
<form>
Votre pseudonyme   <input type ="text" size=22 MAXLENGTH="12" >
<br>
<br>
Votre mot de passe <input type ="text" size=22 MAXLENGTH="12" >
<br>
<br>
 
Votre email        <input type ="text" size =22 MAXLENGTH="12" >
<br>
<br>
 
Votre mot de passe  <INPUT TYPE="password" NAME="pass" SIZE="8" MAXLENGTH="8">
<br>
<br>
 
 
 
<select name="sexe">
<option value="Question" selected> vous recherchez</option>
 
<OPTION value =" une femme qui cherche une homme">une femme qui cherche une homme</option>
<OPTION value ="un homme qui cherche une femme">un homme qui cherche une femme</option>
<OPTION value ="une femme qui cherche une femme">une femme qui cherche une femme</option>
<OPTION value ="un homme qui cherche une homme">un homme qui cherche une homme</option>
</SELECT>
 
<br>
<br>
<INPUT TYPE="submit" VALUE="Envoyer">
<INPUT TYPE="reset" VALUE="Recommencer">
 
 
 
 
</body>
</html>