HyperText
The word HyperText comes from being able to navigate immediately to another webpage when you click on a link. Even if that webpage is stored on a computer on the other side of the world.

Markup Language
Since computers have a hard time understanding the English language, markup language marks content that should be displayed instead of interpreted as an instruction.
<html>
<head>
<style>
body { color: #3E416D; font-family: FibraOne-Regular;}
img { width: 100%; }
.button-wrapper { padding: 24px 24px 24px 24px; }
button { outline: none;background-color: #1E97FF; border: none; border-radius: 24px; color: white; height: 48px; width: 100%; text-align: center; text-decoration: none; display: block; font-size: 16px; font-family:FibraOne-SemiBold; font-weight: bold; letter-spacing: 1px; cursor: pointer;}
</style>
</head>
<body>
<img id="image">
<div class="button-wrapper">
<button onclick="cycle()">HIGHLIGHT NEXT CONCEPT</button>
</div>
<script type="text/javascript">
var images = ['https://images.getmimo.com/images/6b332be9-ee83-4e00-b83c-ef112268f86c', 'https://images.getmimo.com/images/4189f559-3237-435a-b336-d7f876d494db'];
var index = 0;
document.getElementById('image').src=images[0];
function cycle() { index += 1;
if (index >= images.length) {
index = 0;
}
document.getElementById('image').src=images[index];
}
</script>
</body>
</html>
]]>In HTML, tags "mark up" content to highlight the parts of your code that are instructions vs the parts of your code that should display on a webpage.