Bonjour, je développe un site et je bloque sur un truc qui m'a l'air tout bête.
Je vais mettre le code par la suite mais voila en gros sur ma page d'accueil, je veux mettre "actualités" et les dates a coté au centre de l’écran tout simplement, et je voudrais que cela reste au milieu quelque soit la résolution.
Merci !

code HTML :

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
<!DOCTYPE html>
<html>
<head>
<title>Space Prophets</title>
 <meta charset="utf-8" />
 <link rel="stylesheet" type="text/css" href="main.css">
 <html lang="fr">
</head>
  <link href="starjedi" rel="stylesheet" type="text/css" />
<body>
<header>
<h1>Space Prophets</h1>
</header>
<ul class="nav">
<li><a href="./Accueil.html">Accueil</a></li>
<li><a href="./Bio.html">Bio</a></li>
<li><a href="./Concerts.html">Concerts</a></li>
<li><a href="./Galerie.html">Galerie</a></li>
</ul>
<div class="block">
<h2 class="actualites">Actualités</h2>
<ul class="dates">
<li>14 février : concert saint valentin</li>
<li>2 février : Discour au festival "le rock c'est cool"</li>
<li>23 Janvier : Exposition photo du groupe</li>
<li>12 Janvier : Dédicaces à la Fnac de Nantes</li>
<li>31 Décembre : Concert du nouvel an</li>
</ul>
</div>
<footer>
<p class="rejoindre">Rejoignez-nous !</p>
<div class="réseaux">
<img src="images/fb.png"
height="50px"
width="50px"/>
<img src="images/insta.jpg"
height="50px"
width="50px"/>
<img src="images/twitter.png"
height="50px"
width="50px"/>
</div>
</footer>
</body>
</html>]

css:

Code : 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
@font-face {
font-family: 'starjedi';
src: url('starjedi.ttf');
src: url('starjedi.otf') format('truetype'),
     url('starjedi.woff') format('ttf'),
font-weight: normal;
font-style: normal;
}
 
body
{
	background-image : url(./images/espace.jpg);
	background-size: cover;
	background-attachment: fixed;
	width:100%;
}
 
 
h1
{
	font-family: starjedi;
	color : gold;
	text-align : center;
	margin-bottom : 150px;
	margin-top : 100px;
	font-size : 50px;
}
 
 
 
.nav 
{
	text-align : center;
	padding: 0; margin: 0;
 
}
 
.nav li 
{
 
	display: inline;
	list-style: none;
}
.nav a 
{
	display:inline-block;
	margin: 0 80px;
	color : gold;
}
 
.block
{
	margin-top : 150px;
	display : flex;
}
 
 
 
.actualites
{
	color : red;
	border-right: solid;
	padding-right : 60px;
	font-size : 40px;
}
 
.dates
{
	list-style : none;
}
 
li
{
	color : gold;
	margin : 20px;
	text-align : left;
	font-size : 20px;
}
 
footer
{
	position: fixed; 
	bottom: 0; 
	right: 0; 
	display : flex;
}
 
footer .rejoindre
{
	color : gold;
}
 
 
.paragraphe
{
	color : white;
	margin : 60px;
}
 
.antoine
{
	display : flex;
}
 
#antoine 
{
	margin-left : 50px;
	margin-top : 150px;
}
 
.jordan
{
	display : flex;
}
 
#jordan
{
	margin-top : 300px;
	margin-right : 50px;
	text-align : right;
}
 
.alyssa
{
	display : flex;
}
 
#alyssa
{
	margin-left : 50px;
	margin-top : 120px;
}
 
#bio
{
	text-align : center;
	margin-bottom : 50px;
	margin-top : 50px;
}
 
#photo
{
	color : gold;
	margin-top : 100px;
	text-align : center;
}
 
.photo img
{
	margin-top : 100px;
	margin-left : 10px;
	flex-wrap: wrap;
	float: center;
 
}
 
.photo img:active
{
 height : 800px;
 width : 100%;
}
 
#video
{
	color : gold;
	margin-top : 100px;
	text-align : center;
}
 
.video iframe
{
	flex-wrap: wrap;
	margin-top : 100px;
	margin-left : 10px;
	margin-bottom : 100px;
}