ASDV-WebDev/Semester 1/Chapter ZIPs/HTML/chapter5/5.10/index.html

20 lines
432 B
HTML
Raw Normal View History

2023-02-02 15:48:20 -06:00
<!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>