Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > Général Conception Web > Webdesign & Ergonomie
Webdesign & Ergonomie Forum d'entraide Webdesign & Ergonomie : les bonnes pratiques de conception des sites web
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 23/06/2011, 16h36   #1
Futur Membre du Club
 
Inscription : novembre 2006
Messages : 128
Détails du profil
Informations personnelles :
Âge : 24

Informations forums :
Inscription : novembre 2006
Messages : 128
Points : 16
Points : 16
Par défaut rendre une Interface Web plus ergonomique/jolie

Bonjour,

j'ai réalisé en html/css l'interface web ci-dessous (formulaire web basique avec <div>). J'aimerais la rendre un peu plus "user friendly" en je m'en remets donc à vous..
En effet le formulaire est fonctionnel mais je trouve que l'interface reste trop classique
Je prends donc en compte tou(te)s vos remarques/conseils
Merci,
Olivier

Code 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Config File</title>
<SCRIPT language="Javascript">
function Affiche_sources_yes(){
div_sources.style.visibility="visible";
 
}
function Affiche_sources_no(){
div_sources.style.visibility="hidden";
 
}
 
function Affiche_doc_yes(){
div_doc.style.visibility="visible";
 
}
function Affiche_doc_no(){
div_doc.style.visibility="hidden";
 
}
 
</SCRIPT>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
input, textarea
{
font-family:"Times New Roman", Times, serif; 
}
 
input:focus, textarea:focus (ne marche pas sur IE) 
{
background-color:#FFFF99;
}
 
label
{
color:blue;
}
 
legend 
{
font-family:Arial, "Arial Black", Georgia, "Times New Roman", Times, serif;
color:#F8971D;
font-weight:bold;
}
 
fieldset
{
margin-bottom:15px; 
background-color:#FFFFCC;
}
 
 
 
</style>
 
</head>
 
<body>
 
<form name="sendfile" method="POST" ENCTYPE="multipart/form-data" action="upload.php"> 
 
 
<fieldset>
 
 
<center>
<img src="./logo.jpg" height="49" width="160"  >
</center>
 
</fieldset>
 
 
<fieldset>
 
<label for="email">Please confirm your email adress [Important]</label>
<br>
<INPUT type=text name="email">
</fieldset>
<fieldset>
 
 
 
<table width="500" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
 
</tr>
</table>
<br>
 
 
<label for="infos">Would you have the setup file ?
</label>
 
 
<br/>
 
<p>
<input type="radio" name="sources" value="yes" id="yes" tabindex="40" onClick="Affiche_sources_yes();"/> <label for="">yes</label><br />
<input type="radio" name="sources" value="no" id="no" tabindex="70" onClick="Affiche_sources_no();" /> <label for="">no</label><br />
</p>
 
 
 
 
<div id="div_sources" style="visibility:hidden">
 
 
 
<p>Setup File : 
<input type="file" name="file[]" id = "file[]" size="20"> 
</p>
 
 
 
</div>
</fieldset>
 
<fieldset>
 
<label for="infos">Would you have some information to give about this application ? (Install Guideline or anything else)
</label>
 
 
<br/>
 
<p>
<input type="radio" name="sources" value="yes" id="yes" tabindex="40" onClick="Affiche_doc_yes();"/> <label for="">yes</label><br />
<input type="radio" name="sources" value="no" id="no" tabindex="70" onClick="Affiche_doc_no();" /> <label for="">no</label><br />
</p>
 
<div id="div_doc" style="visibility:hidden">
 
 
 
<p>Install guideline : 
<input type="file" name="file[]" id = "file[]" size="20">
</p>
 
 
 
</div>
 
 
 
</fieldset>
 
<fieldset>
 
<label for="infos">Would you have any other information to provide ? (license key, the person that might use this application, or anything else..)
</label>
 
<br>
<TEXTAREA name="information" rows=10 COLS=40></TEXTAREA>
 
 
 
</fieldset>
 
 
 
<p>
<input type=submit value=Submit> 
 
</p>
 
 
</form>
 
 
</body>
 
</html>
olivier1209 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 23/06/2011, 16h49   #2
Membre éclairé
 
Avatar de Ceddoc
 
Homme Cédric
Développeur Java / Web / .NET
Inscription : janvier 2009
Messages : 327
Détails du profil
Informations personnelles :
Nom : Homme Cédric
Âge : 23
Localisation : France, Rhône (Rhône Alpes)

Informations professionnelles :
Activité : Développeur Java / Web / .NET
Secteur : High Tech - Multimédia et Internet

Informations forums :
Inscription : janvier 2009
Messages : 327
Points : 369
Points : 369
Ta demande est vaste... Il y a des centaines de choses à faire pour rendre une telle page plus jolie mais là comme ça je dirais:
-Des couleurs plus harmonieuses (bleu et jaune c'est pas mon truc)
-Mettre une police moins classique
-Utiliser des images de fond pour faire des fonds plus agréables aux blocs... (des dégradés?

Après je suis pas graphiste
Ceddoc est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 27/08/2011, 08h58   #3
Invité régulier
 
Homme Réda El Karima
Webdesigner
Inscription : novembre 2009
Messages : 5
Détails du profil
Informations personnelles :
Nom : Homme Réda El Karima
Localisation : Maroc

Informations professionnelles :
Activité : Webdesigner

Informations forums :
Inscription : novembre 2009
Messages : 5
Points : 7
Points : 7
Bonjour,
voici quelque petite retouche pas trop révolutionnaire mais plus ergonomique bonne chance

Code :
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Config File</title>
<SCRIPT language="Javascript">
function Affiche_sources_yes(){
div_sources.style.display="block";
 
}
function Affiche_sources_no(){
div_sources.style.display="none";
 
}
 
function Affiche_doc_yes(){
div_doc.style.display="block";
 
}
function Affiche_doc_no(){
div_doc.style.display="none";
 
}
 
</SCRIPT>
 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
input, textarea
{
font-family:"Times New Roman", Times, serif; 
}
 
input:focus, textarea:focus (ne marche pas sur IE) 
{
background-color:#FFFF99;
}
 
label
{
color:blue;
}
 
legend 
{
font-family:Arial, "Arial Black", Verdana, sans-serif;
color:#F8971D;
font-weight:bold;
}
 
fieldset
{
margin-bottom:15px; 
background-color:#FFFFCC;
}
 
 
 
</style>
 
</head>
 
<body>
 
<form name="sendfile" method="POST" ENCTYPE="multipart/form-data" action="upload.php"> 
 
 
<fieldset>
 
 
<center>
<img src="./logo.jpg" height="49" width="160"  >
</center>
 
</fieldset>
 
 
<fieldset>
 
<label for="email"><strong>Please confirm your email adress </strong>[Important]</label>
<br>
<INPUT type=text name="email" size="50">
</fieldset>
<fieldset>

 
 
<label for="infos"><strong>Would you have the setup file ?
</strong></label>
 
 
<br/>
 
<p>
<input type="radio" name="sources" value="yes" id="yes" tabindex="40" onClick="Affiche_sources_yes();"/> <label for="yes">yes</label><br />
<input type="radio" name="sources" value="no" id="no" tabindex="70" onClick="Affiche_sources_no();" /> <label for="no">no</label><br />
</p>
 
 
 
 
<div id="div_sources" style="display:none;">
 
 
 
<p>Setup File : 
<input type="file" name="file[]" id = "file[]" size="20"> 
</p>
 
 
 
</div>
</fieldset>
 
<fieldset>
 
<label for="infos"><strong>Would you have some information to give about this application ?</strong><br/> (Install Guideline or anything else) </label>
 
 
<br/>
 
<p>
<input type="radio" name="sources" value="yes" id="yes1" tabindex="40" onClick="Affiche_doc_yes();"/> <label for="yes1">yes</label><br />
<input type="radio" name="sources" value="no" id="no1" tabindex="70" onClick="Affiche_doc_no();" /> <label for="no1">no</label><br />
</p>
 
<div id="div_doc" style="display:none">
 
 
 
<p>Install guideline : 
<input type="file" name="file[]" id = "file[]" size="20">
</p>
 
 
 
</div>
 
 
 
</fieldset>
 
<fieldset>
 
<label for="infos"><strong>Would you have any other information to provide ?</strong><br/> (license key, the person that might use this application, or anything else..) </label>
 
<br>
<TEXTAREA name="information" rows=10 COLS=70></TEXTAREA>
 
 
 
</fieldset>
 
 
 
<input style="width:200px; height:30px; font-size:18px;" type=submit value=Submit> 
 
 
</form>
 
 
</body>
 
</html>
psychostyle est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 01h37.


 
 
 
 
Partenaires

Hébergement Web