Vous êtes sur la page 1sur 3

Here is the corrected HTML and CSS code:

```html

<!DOCTYPE html>

<html lang="fr">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>UNIVERSITE DE LUBUMBASHI - FACULTE DE POLYTECHNIQUE</title>

<link rel="stylesheet" href="styles.css">

<style>

body {

background-color: #f0f0f0;

header {

text-align: center;

background-color: #333;

color: white;

padding: 10px;

.rotation-images {

display: flex;
justify-content: center;

.rotation-images img {

max-width: 100%;

animation: rotation 15s infinite linear;

@keyframes rotation {

from {

transform: rotate(0deg);

to {

transform: rotate(360deg);

</style>

</head>

<body>

<header>

<h1>UNIVERSITE DE LUBUMBASHI</h1>

<h2>FACULTE DE POLYTECHNIQUE</h2>

<p>Promotion: PREPARATOIRE POLYTECHNIQUE</p>


</header>

<main>

<div class="rotation-images">

<p><img src="polytech.jpg" width="300" alt="Logo de la faculté"></p>

<p><img src="unilu.jpg" width="300" alt="Image de l'UNILU"></p>

</div>

</main>

<footer>

<nav>

<a href="page2.html">Page Membres</a>

<a href="page3.html">Page Vidéos</a>

</nav>

</footer>

</body>

</html>

```

Changes made:

1. Moved the CSS styles inside `<style>` tags in the `<head>` section.

2. Removed the `bgcolor="grey"` attribute from the `<body>` tag.

3. Fixed the closing `</body>` tag placement.

4. Removed the extra quotes at the end of the code.

Vous aimerez peut-être aussi