Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/HTML/html-kurs/Basics/textstrukturierung2.html
2022-09-04 12:45:01 +02:00

24 lines
432 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Textstrukturierung 2</title>
</head>
<body>
<h1>Fettgedruckter Text</h1>
<b>Fettgedruckter Text</b><br>
<strong>Fettgedruckter Text</strong>
<h1>Kursivgedruckter Text</h1>
<i>Kursivgedruckter Text</i><br>
<em>Kursivgedruckter Text</em>
<h1>Unterstrichener Text</h1>
<u>Unterstrichener Text</u>
<h1>Span-Tag</h1>
<span>span-tag</span>
</body>
</html>