Răspuns :
Ti-am atasat 3 imagini. Tot ce trebuie sa faci este un folder nou pe care o sa-l numesti: "images".Acolo o sa pui aceste imagini.
Vei redenumi fisierele index.txt, index-2.txt si index-3.txt in: index.html, index-2.html, index-3.html.
In folderul principal o sa ai cele 3 pagini html. Spre exemplu in folderul site se va afla :
- index.html
- index-2.html
- index-3.html
- folderul "images" ce contine toate cele 3 imagini.
Brainly nu ma lasa sa postez index-3.html asa ca o sa scriu codul aici:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&family=Hurricane&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: darkslategrey;
}
.titlu {
font-family: 'Hurricane', cursive;
margin-left: 40px;
font-size: 70px;
color: white;
text-decoration: underline 3px;
}
.poza img {
border: 4px dashed white;
display: flex;
width: 35%;
margin-top: 100px;
margin-left: auto;
margin-right: auto;
}
.buttons {
width: 100%;
display: flex;
justify-content: center;
font-family: 'BIZ UDPMincho', serif;
}
.buttons a {
margin-top: 20px;
margin-right: 30px;
margin-left: 30px;
display: inline;
color: white;
}
.buttons a:hover {
color: aqua;
}
</style>
<title>Album foto</title>
</head>
<body>
<div>
<div>
<h1 class="titlu">Albumul meu de fotografii</h1>
</div>
<div class="poze">
<div class="poza"><img src="./images/img3.jpg" alt="Imagine"></div>
<div class="buttons">
<a href="./index-2.html"><- Imaginea precedenta </a>
</div>
</div>
</div>
</div>
</body>
</html>