ASDV-WebDev/Semester 1/Chapter ZIPs/HTML/chapter5/5.10/index.html
2023-08-16 17:31:33 -05:00

20 lines
432 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Tropical Island</title>
<meta charset="utf-8">
<style>
figcaption { font-weight: bold;
font-style: italic;
font-size: 1.5em;
font-family: Trajan Pro, Arial }
</style>
</head>
<body>
<figure>
<img src="myisland.jpg" alt="Tropical Island" height="480" width="640">
<figcaption>Tropical Island Getaway
</figcaption>
</figure>
</body>
</html>