Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Image.html 482 B
<!doctype html>
<html lang="en">

<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Image</title>
</head>

<body>
	<p>The School mascot is Testudo.
		<img src="testudo.jpg" width="84" height="111" alt="Testudos' image'">
	</p>

	<p> Galaxy photo
		<img src="galaxy.jpeg" alt="galaxy" style="max-width: 100%; height: auto">
		<img src="galaxy.jpeg" alt="galaxy" style="width: 100px; height: 200px">
	</p>

</body>

</html>