Last active
September 24, 2018 21:25
-
-
Save SaraVieira/6299a7bf3c64059a67637ebb37eae8ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Theme Switcher</title> | |
<meta charset="UTF-8" /> | |
<link href="src/style.css" /> | |
</head> | |
<body> | |
<header> | |
<button id="theme">Change theme</button> | |
<fieldset> | |
<label for="size">Font Size</label> | |
<input type="range" id="size" min="12" max="28" value="16" step="1" /> | |
</fieldset> | |
</header> | |
<main> | |
<h1>The Akita Dog</h1> | |
<img src="https://images.dog.ceo/breeds/akita/Akita_hiking_in_Shpella_e_P%C3%ABllumbasit.JPG" alt="Akita" /> | |
<p>The Akita is a large and powerful dog breed with a noble and intimidating presence. He was originally used for guarding royalty | |
and nobility in feudal Japan. The Akita also tracked and hunted wild boar, black bear, and sometimes deer. He is a fearless | |
and loyal guardian of his family. The Akita does not back down from challenges and does not frighten easily. Yet he is also | |
an affectionate, respectful, and amusing dog when properly trained and socialized. Read more at <a href="https://dogtime.com/dog-breeds/akita#Qkh31WmvBcLcQJt1.99">https://dogtime.com/dog-breeds/akita#Qkh31WmvBcLcQJt1.99</a></p> | |
</main> | |
<script src="src/index.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment