COS30045/index.html
dlawler489 3ec90619cd intial
2025-04-07 12:59:31 +10:00

49 lines
No EOL
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basic Webpage with D3</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
background-color: #f4f4f4;
text-align: center;
padding: 1em 0;
}
main {
padding: 20px;
}
#d3-content {
margin: 20px auto;
width: 80%;
height: 400px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My D3 Webpage</h1>
</header>
<main>
<h2>D3 Content Area</h2>
<div id="d3-content"></div>
</main>
<footer>
<p>&copy; 2023 My Website</p>
</footer>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script>
// D3 content will go here
const svg = d3.select("#d3-content")
.append("svg")
.attr("width", "100%")
.attr("height", "100%");
</script>
</body>
</html>