Advertisement
Gormit

index.html

Apr 22nd, 2020
1,241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <link rel="stylesheet" href="css/style.css">
  7.     <title>Moje Miasto</title>
  8. </head>
  9. <body>
  10.     <div class="container">
  11.         <h2>Moje miasto</h2>
  12.         <hr>
  13.         <h3>Widok z mojego okna</h3>
  14.         <div class="foto-container">
  15.             <!-- Adresowanie wzglęne [względem index.html] -->
  16.             <img src="img/foto1.jpg" alt="zdjęcie nr. 1" class="foto">
  17.         </div>
  18.         Zdjęcie pierwsze przedstawia widok z mojego balkonu.
  19.         <div class="foto-container">
  20.             <!-- Adresowanie bezwględne [pełna ścieżka do pliku] -->
  21.             <img src="C:\Users\mateu\Desktop\Aleksander_Oberc-moje_miasto\img\foto2.jpg" alt="zdjęcie nr. 2" class="foto">
  22.         </div>
  23.         Zdjęcie drugie przedstawia drugi widok, tym razem z mojego okna.
  24.         <hr>
  25.     </div>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement