2023-02-24 14:18:17 -06:00

32 lines
1.0 KiB
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>floating images</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
figure {float: left;
width: 228px;
padding-bottom: 10px;
background-color: #EAEAEA;
}
figcaption {text-align: center;
font-style: italic;
font-family: Georgia, serif;
}
</style>
</head>
<body>
<h1>Floating Images</h1>
<figure>
<img src="photo1.jpg" alt ="Golden Gate Bridge"
width="225" height="160">
<figcaption>Golden Gate Bridge</figcaption>
</figure>
</body>
</html>