Untitled
unknown
plain_text
2 years ago
1.1 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Graph</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="my_header" style="text-align: center;">
<h1 style="font-size: 35px;">Networks Graph for Top 100 BoardGames from BoardGameGeek.com</h1>
<h3>
<button id="returnButton"
style="font-size: large; padding: 10px 20px;stroke: black; stroke-width: 30px ; border-radius: 5px; background-color: lightblue; color: rgb(0, 0, 0);">Home
Page</button>
</h3>
</div>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" style="color: rgb(0, 0, 0);">×</a>
<h1>List of games sorted by ranking</h1>
</div>
<div id="main">
<button class="openbtn" onclick="openNav()">☰ Games list</button>
</div>
<div id="graph"></div>
<script src="https://d3js.org/d3.v7.js"></script>
<script src="script.js"></script>
</body>
</html>
Editor is loading...