22 lines
576 B
HTML
22 lines
576 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<!-- This is a very short HTTP/1.1 HTML Snippet. Mainly to test if the Server Works! -->
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Rust HTTP</title>
|
|
<link href="styles.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="specialboi">Hello from RSTTP</h1>
|
|
<h2 style="font-style: italic;font-weight: bold;">Special Heading2</h2>
|
|
<p id="javascriptdate">
|
|
<p>
|
|
<script src="script.js"></script>
|
|
|
|
<a href="dir/index.html">Go to the second Page</a>
|
|
</body>
|
|
|
|
</html>
|