19 lines
606 B
HTML
19 lines
606 B
HTML
<!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> |