/
Arsenii
/
html
Обзор
Документация
Войти
/
Arsenii
/
html
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
espresso.html
32 строки
1 KB
Arsenii
First html code
29 дек 2024, 12:27
29 дек 2024, 12:27
5c1c06d
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Espresso</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Espresso</h1> <nav> <ul> <li><a href="index.html#home">Home</a></li> <li><a href="index.html#about">About</a></li> <li><a href="index.html#menu">Menu</a></li> <li><a href="index.html#contact">Contact</a></li> </ul> </nav> </header> <section> <h2>Espresso</h2> <p>Espresso is a concentrated form of coffee served in small, strong shots and is the base for many coffee drinks. It is made by forcing a small amount of nearly boiling water through finely-ground coffee beans. This results in a rich and intense flavor, with a thicker consistency and a higher concentration of suspended and dissolved solids.</p> <img src="https://bogatyr.club/uploads/posts/2023-03/1678762209_bogatyr-club-p-kofe-v-beloi-chashke-foni-vkontakte-16.jpg" alt="Espresso" height="300" width="600"> </section> <footer> <p>© 2024 Coffee Shop.</p> </footer> </body> </html>