12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>Моя домашняя страница</title>
- <style type="text/css">
- body {
- background-color: #eaeab6;
- }
- .foto {
- width: 50%;
- border: 5px dashed green;
- margin: 10px;
- }
- .centered {
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- display: block;
- }
- h1 {
- color: red;
- }
- a {
- color: blue;
- text-decoration: none;
- border-bottom: 1px dotted blue;
- }
- </style>
- </head>
- <body>
- <h1 class="centered">Привет!!!!</h1>
- <p>Как дела?</p>
- <h2>Обо мне</h2>
- <img src="./home.jpg" class="foto"/>
- <img src="./home2.jpg" class="foto centered"/>
- <p>
- <a href="https://ya.ru" target="_blank">Остальное искать здесь</a>
- </p>
- </body>
-
- </html>
|