/
Arsenii
/
html
Обзор
Документация
Войти
/
Arsenii
/
html
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
flat_white.html
34 строки
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>Flat White</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Flat White</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>Flat White</h2> <p>A Flat White is a coffee beverage consisting of espresso with microfoam (steamed milk with small, fine bubbles and a glossy or velvety consistency). It is similar to a latte but smaller in volume and with less microfoam, resulting in a stronger coffee flavor.</p> <img src="https://menu2go.ru/images/food/217/217_364_20210818162642_8316.jpg" alt="Flat White"> <h3>Preparation</h3> <p>The Flat White is typically made by pulling a shot of espresso and then adding steamed milk. The milk is poured over the espresso in a way that creates a silky texture and blends seamlessly with the coffee.</p> </section> <footer> <p>© 2024 Coffee Shop. All rights reserved.</p> </footer> </body> </html>