Skip to content

Commit

Permalink
Update the index.html to include fonts.
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarpatel288 committed Oct 7, 2024
1 parent 3d9b2c8 commit 2a47073
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kotlin DSA Practice</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="contentListUpdater.js"></script>
<style>
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body>
<h1>Kotlin DSA Practice Files</h1>
<div id="file-list">
<!-- The file list will be populated here dynamically -->
</div>
<script src="contentListUpdater.js"></script>
</body>
</html>

0 comments on commit 2a47073

Please sign in to comment.