programming-examples/html/_Basics/title_css.html

16 lines
298 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
<style type="text/css">
#center {text-align: center;}
#right {text-align: right;}
</style>
</head>
<body>
<h3>Title of level 3</h3>
<h3 id="center">Title of level 3</h3>
<h3 id="right">Title of level 3</h3>
</body>
</html>