project created

This commit is contained in:
2025-07-25 22:03:20 +12:00
parent b80f759df2
commit 1b6c58a348
27 changed files with 211 additions and 5271 deletions
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sleek Electron Browser</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<button id="back-button" title="Go Back"></button>
<button id="forward-button" title="Go Forward"></button>
<button id="refresh-button" title="Refresh Page"></button>
<input type="text" id="address-bar" placeholder="Enter URL" value="https://www.google.com/">
<button id="go-button" title="Go">Go</button>
</div>
<script src="renderer.js"></script>
</body>
</html>