33 lines
946 B
HTML
33 lines
946 B
HTML
|
<!DOCTYPE html>
|
||
|
<!--
|
||
|
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||
|
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
|
||
|
-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Tropical Island Gateway</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<style>
|
||
|
figure {
|
||
|
width: 480px;
|
||
|
border: 1px solid #000000;
|
||
|
padding: 6px;
|
||
|
}
|
||
|
figcaption { text-align: center;
|
||
|
font-family: Papyrus, fantasy;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<figure>
|
||
|
<img src="myisland.jpg" width="480"
|
||
|
height="320" alt="Tropical Island">
|
||
|
<figcaption>
|
||
|
Tropical Island Getaway
|
||
|
</figcaption>
|
||
|
</figure>
|
||
|
|
||
|
</body>
|
||
|
</html>
|