Examples
Prerequisites
Step-by-Step Guide
mkdir my-dapp-portal cd my-dapp-portalnpm init -ynpm install web3 bootstrap
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My dApp Portal</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<!-- Your UI components go here -->
</div>
<script src="node_modules/web3/dist/web3.min.js"></script>
<script src="app.js"></script>
</body>
</html>Last updated