20 lines
324 B
HTML
Executable File
20 lines
324 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<script>alert("Hello!");</script>
|
|
<style>
|
|
html {
|
|
background-color: pink;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>First 5 Minute Website</h1>
|
|
<p>Lorem ipsum stuff.</p>
|
|
<img src="https://cdn.pixabay.com/photo/2016/07/07/16/46/dice-1502706_640.jpg" />
|
|
</body>
|
|
|
|
</html>
|