mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
20 lines
No EOL
557 B
HTML
20 lines
No EOL
557 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
|
<title>HTML Tips and Tricks - Map</title>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<link rel='stylesheet' type='text/css' media='screen' href='../main.css'>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="demo">
|
|
<h2> You have selected a Lion </h2>
|
|
<div>
|
|
<img src="lion.jpg" alt="lion" />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |