Add basis for exercise as well as task description

This commit is contained in:
Julius Freudenberger 2025-11-19 23:24:55 +01:00
parent c449843941
commit 41ae601c19
9 changed files with 200 additions and 1 deletions

33
country.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Country - World Information System</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div>
<h1 id="country-heading"></h1>
</div>
<h2 id="country-capital"></h2>
<h2>Languages</h2>
<div>
<ul id="language-list">
</ul>
</div>
<h2>Currencies</h2>
<div>
<ul id="currency-list">
</ul>
</div>
<h2>Phone Prefix</h2>
<div>
<ul id="phone-prefix-list">
</ul>
</div>
<h2>Flag</h2>
<span style="font-size: xxx-large" id="flag-symbol"></span>
</body>
<script src="js/country.js"></script>
</html>