You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.5 KiB
HTML
72 lines
1.5 KiB
HTML
5 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Hello!</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<!-- import the webpage's stylesheet -->
|
||
|
<link rel="stylesheet" href="/style.css">
|
||
|
|
||
|
<!-- import the webpage's javascript file -->
|
||
|
<script src="script.js" defer></script>
|
||
|
<script src="https://d3js.org/d3.v5.js"></script>
|
||
|
<script src="priority-queue.js"></script>
|
||
|
<script src="language.js"></script>
|
||
|
<script src="terrain.js"></script>
|
||
|
<style>
|
||
|
path, line {
|
||
|
fill: none;
|
||
|
stroke: black;
|
||
|
stroke-linecap: round;
|
||
|
}
|
||
|
|
||
|
.field {
|
||
|
stroke: none;
|
||
|
fill-opacity: 1.0;
|
||
|
}
|
||
|
|
||
|
.slope {
|
||
|
stroke-width: 1;
|
||
|
}
|
||
|
|
||
|
.river {
|
||
|
stroke-width: 2;
|
||
|
}
|
||
|
|
||
|
.coast {
|
||
|
stroke-width: 4;
|
||
|
}
|
||
|
|
||
|
.border {
|
||
|
stroke-width: 5;
|
||
|
stroke-dasharray: 4,4;
|
||
|
stroke-linecap: butt;
|
||
|
}
|
||
|
|
||
|
text {
|
||
|
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
|
||
|
color: black;
|
||
|
stroke: white;
|
||
|
stroke-width: 5;
|
||
|
stroke-linejoin: round;
|
||
|
paint-order: stroke;
|
||
|
}
|
||
|
|
||
|
text.region {
|
||
|
stroke-width:10;
|
||
|
font-variant: small-caps;
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
float: right;
|
||
|
background-color: white;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<svg width="1000" height="1000"></svg>
|
||
|
</body>
|
||
|
</html>
|