1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Egghead D3 v4</title>
- <script src="node_modules/d3/build/d3.js"></script>
- <style>
- div {
- border: 1px solid black;
- display: inline-block;
- }
- a {
- display: block;
- }
- </style>
- </head>
- <body>
- <div class="title">
- <a href="#">About</a>
- <a href="#">Products</a>
- <a href="#">Contact</a>
- </div>
- <a class="action" href="#">Buy now</a>
- <script src="src/app.js"></script>
- </body>
- </html>
|