This repository has been archived on 2024-09-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
IT2/html/tasks/chapter_1/hello_world/oppgave.html
2020-01-29 12:56:06 +01:00

49 lines
1.1 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="nb">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="Main.css">
<style>
body{
margin-bottom: 13em;
margin-left: 4em;
margin-right: 17em;
}
</style>
<script src="./js/lorem-ipsum.js"></script>
<title>Hello World!</title>
</head>
<body>
<!--Comment-->
<h1>Header</h1>
<p>This is an example of a website. Please turn down the volume in order to play the soundcloud track. (Which doesn't exist anymore because I removed it some time ago ¯\_(ツ)_/¯</p>
<br>
<h2 class=header>Class Header</h2>
<p>
<a href="">Click me!</a>
</p>
<br>
<h2>Lorem Ipsum</h2>
<p>
<script>
lorem = new LoremIpsum();
loremtext = lorem.generate(1000);
document.write(loremtext);
</script>
</p>
<img src="./Images/html5.svg" id="linkimage">
</body>
</html>