<!DOCTYPE html>

<html lang="de">

	<head>
		<title>Das Kamel</title>
			<link rel="preconnect" href="https://fonts.googleapis.com">
			<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
			<link href="https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@400;600&display=swap" rel="stylesheet">

		<style>
			
			h1{
				text-align: center;
				text-decoration: underline;
				font-family: Cormorant SC;
			}
			body{
				background-color: #E1BD5B;
			}
			a:hover{
				color: #1e42a4;
			}
			tr:nth-child(odd){
				background-color: #CAC4C4;
			}
			tr:nth-child(even){
				background-color: #E2DDDD;
			}
			td{
				font-size: 0.5cm;
			}
			.imgzentriert{
				text-align: center;
			}

		</style>

		<h1><b>Das Kamel</b></h1>

		<table 
		border="2"
		border width="40%"
		align="center"
		cellpadding="8"
		cellspacing="0"
	>

			<tr>
				<td><b>Lebensraum</b></td>
				<td> trockene Steppen, Halbwüsten und Wüsten</td>
			</tr>
			<tr>
				<td><b>Gewicht</b></td>
				<td>480kg</td>
			</tr>
			<tr>
				<td><b>Grösse</b></td>
				<td>2.5m</td>
			</tr>
			<tr>
				<td><b>Höchstgeschwindigkeit</b></td>
				<td>56km/h</td>
			</tr>
			<tr>
				<td><b>weitere Info</b></td>
				<td><a href="https://de.wikipedia.org/wiki/Kamele#:~:text=Die%20Kamele%20(Camelidae)%20sind%20eine,der%20Schwielensohler%20(Tylopoda)%20darstellen." target="_blank">das Kamel</td>
			</tr>
		</table>

		<p> </p>

		<p class="imgzentriert">
		<img src="https://transkript.de/fileadmin//transkript/01_Nachrichten/2018/2018_08_24_kamel.jpg" alt="Bildtext" border=3 height=632 width=1018>
		</p>
		
		
</html>