SHD-WebsiteFingerprintingLab/part1/warmup.html

34 lines
596 B
HTML
Raw Normal View History

2023-01-31 20:06:27 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Website Fingerprinting Lab</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
padding: 64px;
}
h1 {
font-size: 32px;
margin-bottom: 16px;
}
p {
margin-bottom: 8px;
}
</style>
</head>
<body>
<h1>Website Fingerprinting Lab Warmup</h1>
<p id="exercise1-values"></p>
<p id="exercise2-values"></p>
<script src="warmup.js"></script>
</body>
</html>