programming-examples/html/_Basics/Inserting images into the HTML document.html

14 lines
381 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>Example of HTML Images</title>
</head>
<body>
<div>
<img src="../images/kites.jpg" alt="Flying Kites">
<img src="../images/sky.jpg" alt="Cloudy Sky">
<img src="../images/balloons.jpg" alt="Hot Air Balloons">
</div>
</body>
</html>