Website-Finder/Javascript/index.html

21 lines
411 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Website-Finder</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="./index.css">
<script type="text/javascript" src="./index.js"></script>
</head>
<body>
<button onclick="findWebsites()">Find websites!</button>
<p>STATUS: STOPPED</p>
<p>COUNT:</p>
<p>CHECKING:</p>
<div id="list">
<ul>
</ul>
</div>
</body>
</html>