After successfully creating a VS Code Extension for code completion, I decided to develop a website as a landing page where users can sign up and customize their extension settings.
The editor I built pops up first on the page seemed to be working fine initially, but then an issue surfaced. You can see everything running normally in this clip:
However, things didn't go as planned based on this video:
Check out the other video here
For my CSS file (main_light.css):
function load() {
// Your JavaScript code goes here
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
// Your CSS code goes here
<!DOCTYPE html>
<html>
<head>
<!-- Your HTML head content -->
</head>
<body onload="load()">
<script src="main.js"></script>
<article>
<section>
<h1 class="title">Codosaurus Copilot</h1>
<p class="sub">A better AI for a superior programming experience</p>
<!-- Your HTML body content goes here -->
</section>
</article>
</body>
</html>
I would appreciate any feedback or suggestions you may have. Thank you!