/
Arsenii
/
html
Обзор
Документация
Войти
/
Arsenii
/
html
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
latte.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>Latte</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Latte</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>Latte</h2> <p>A latte is a coffee drink made with espresso and steamed milk. The term "latte" is an abbreviation of the Italian caffè latte, which means "milk coffee". Lattes have a smooth and creamy texture and can be flavored with syrups such as vanilla, caramel, or hazelnut.</p> <img src="https://catherineasquithgallery.com/uploads/posts/2021-03/1614556227_23-p-chashka-kofe-na-belom-fone-26.jpg" alt="Latte" height="300" width="600"> </section> <footer> <p>© 2024 Coffee Shop.</p> </footer> </body> </html>