programming-examples/html/Basics/Inserting images into the HTML document.html
2019-11-18 14:44:36 +01:00

14 lines
381 B
HTML

<!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>