salut,

mon but est d'organiser mon travail dans une page html

en faite je veux découper la page html en deux tableau qui sont à coté et de même taille

le contenu actuelle de ma page web est le suivant :
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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
<%@ taglib prefix="s" uri="/struts-tags" %>
 
 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
 
<style type="text/css">
*{
        /* A universal CSS reset */
        margin:0;
        padding:0;
}
 
 
#navigationMenu li{
        list-style:none;
        height:39px;
        padding:2px;
        width:40px;
}
 
#navigationMenu span{
        /* Container properties */
        width:0;
        left:38px;
        padding:0;
        position:absolute;
        overflow:hidden;
 
        /* Text properties */
        font-family:'Myriad Pro',Arial, Helvetica, sans-serif;
        font-size:18px;
        font-weight:bold;
        letter-spacing:0.6px;
        white-space:nowrap;
        line-height:39px;
        
        /* CSS3 Transition: */
        -webkit-transition: 0.25s;
        
        /* Future proofing (these do not work yet): */
        -moz-transition: 0.25s;
        transition: 0.25s;
}
 
#navigationMenu a{
        background:url('/ProjetVrai/images2/navigation.jpg') no-repeat;
 
        height:39px;
        width:38px;
        display:block;
        position:relative;
}
 
/* General hover styles */
 
#navigationMenu a:hover span{ width:auto; padding:0 20px;overflow:visible; }
#navigationMenu a:hover{
        text-decoration:none;
        
        /* CSS outer glow with the box-shadow property */
        -moz-box-shadow:0 0 5px #9ddff5;
        -webkit-box-shadow:0 0 5px #9ddff5;
        box-shadow:0 0 5px #9ddff5;
}
 
/* Green Button */
 
#navigationMenu .home { background-position:0 0;}
#navigationMenu .home:hover {   background-position:0 -39px;}
#navigationMenu .home span{
        background-color:#7da315;
        color:#3d4f0c;
        text-shadow:1px 1px 0 #99bf31;
}
 
/* Blue Button */
 
#navigationMenu .about { background-position:-38px 0;}
#navigationMenu .about:hover { background-position:-38px -39px;}
#navigationMenu .about span{
        background-color:#1e8bb4;
        color:#223a44;
        text-shadow:1px 1px 0 #44a8d0;
}
 
/* Orange Button */
 
#navigationMenu .services { background-position:-76px 0;}
#navigationMenu .services:hover { background-position:-76px -39px;}
#navigationMenu .services span{
        background-color:#c86c1f;
        color:#5a3517;
        text-shadow:1px 1px 0 #d28344;
}
 
/* Yellow Button */
 
#navigationMenu .portfolio { background-position:-114px 0;}
#navigationMenu .portfolio:hover{ background-position:-114px -39px;}
#navigationMenu .portfolio span{
        background-color:#d0a525;
        color:#604e18;
        text-shadow:1px 1px 0 #d8b54b;
}
 
/* Purple Button */
 
#navigationMenu .contact { background-position:-152px 0;}
#navigationMenu .contact:hover { background-position:-152px -39px;}
#navigationMenu .contact span{
        background-color:#af1e83;
        color:#460f35;
        text-shadow:1px 1px 0 #d244a6;
}
 
/* The styles below are only needed for the demo page */
 
#main{
        margin:80px auto;
        position:relative;
        width:40px;
}
 
 
h1{
        color:#fff;
        font-size:30px;
        font-weight:normal;
        padding:60px 0 20px;
        text-align:center;
}
 
a, a:visited,a:active {
        color:#0196e3;
        text-decoration:none;
        outline:none;
}
 
a:hover{
        text-decoration:underline;
}
 
a img{
        border:none;
}
 
</style>
 
 
 
</head>
 
 
<body>
 
<s:form id="statsForm" action="refreshChart" method="POST" theme="simple">
 
<div id="chartContainer"></div>   
 
<s:hidden id="graphXML" name="graphXML" />
<s:hidden id="chartType" name="chartType" />
 
 
 
 
 
 
 
 
<ul id="navigationMenu">
    <li>
	    <a class="home" href="<s:url action="Bar"/>">
            <span>Bar</span>
        </a>
    </li>
 
    <li>
    	<a class="about" href="<s:url action="Column2D"/>">
            <span>Column2D</span>
        </a>
    </li>
 
    <li>
	     <a class="Line2D" href="<s:url action="Line2D"/>">
            <span>Line2D</span>
         </a>
    </li>
 
    <li>
    	<a class="portfolio" href="<s:url action="Pie2D"/>">
            <span>Pie2D</span>
        </a>
    </li>
 
    <li>
    	<a class="contact" href="<s:url action="Pie3D"/>">
            <span>Pie3D</span>
        </a>
    </li>
</ul>
 
 
 
</s:form>
 
</body>
</html>


je veux que le contenu de premier tableau :

Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
<div id="chartContainer"></div>   
 
<s:hidden id="graphXML" name="graphXML" />
<s:hidden id="chartType" name="chartType" />

et le contenu de deuxième tableau est :
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
<ul id="navigationMenu">
    <li>
	    <a class="home" href="<s:url action="Bar"/>">
            <span>Bar</span>
        </a>
    </li>
 
    <li>
    	<a class="about" href="<s:url action="Column2D"/>">
            <span>Column2D</span>
        </a>
    </li>
 
    <li>
	     <a class="Line2D" href="<s:url action="Line2D"/>">
            <span>Line2D</span>
         </a>
    </li>
 
    <li>
    	<a class="portfolio" href="<s:url action="Pie2D"/>">
            <span>Pie2D</span>
        </a>
    </li>
 
    <li>
    	<a class="contact" href="<s:url action="Pie3D"/>">
            <span>Pie3D</span>
        </a>
    </li>
</ul>


et je pense que je dois mettre les deux tableau dans un tableau principale



est ce quelqu'un pouvez m'aider

merci d'avance