Files
uni-web-site/lectures/lec2/part1/task2.html
2026-01-09 19:38:48 +10:00

33 lines
486 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Задание 2</title>
<style>
h1,
h2 {
text-align: center;
color: maroon;
}
ins {
text-decoration: underline;
}
i {
font-style: italic;
}
</style>
</head>
<body>
<h1>
<ins>Основы HTML</ins>
</h1>
<h2>
<i>Оглавление</i>
</h2>
</body>
</html>