History
Web languages
Web requests
Web apps
History
Web languages
Web requests
Web apps
Matz Is Nice And So Are We
History
Web languages
Web requests
Web apps
<html>
<head>
<title>Example page</title>
</head>
<body>
<h1>A heading</h1>
<p>
This is a paragraph.
</p>
<p>
This is another paragraph. With <strong>bold</strong> and <em>italic</em> text.
</p>
<p>
Here is a pizza:<br>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Kartoffel_pizza_%28with_border%29.jpg/320px-Kartoffel_pizza_%28with_border%29.jpg" alt="pizza">
</p>
<p>
You can learn more about HTML <a href="https://developer.mozilla.org/en-US/Learn/HTML">here</a>.
</p>
</body>
</html>
example_page.html
<html>
<head>
<style>
.warning {
background-color: tomato;
}
</style>
</head>
<body>
<div>
Pizza is hot!
</div>
</body>
</html>
example_page_with_style.html
<html>
<head>
<script>
function pizzaTime(element) {
element.innerHTML = "<img src='https://upload.wikimedia.org/wikipedia/commons/thumb/a/ae/Kartoffel_pizza_%28with_border%29.jpg/320px-Kartoffel_pizza_%28with_border%29.jpg' alt='pizza'>";
}
</script>
</head>
<body>
<div>
</div>
</body>
</html>
example_page_with_js.html
History
Web languages
Web requests
Web apps
History
Web languages
Web requests
Web apps