browser-webapp/dist/index.html

69 lines
1.6 KiB
HTML
Raw Normal View History

2023-09-09 22:37:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
2023-09-16 22:03:15 +00:00
2023-09-09 22:37:56 +00:00
#browser-container {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
}
2023-09-16 22:03:15 +00:00
2023-09-09 22:37:56 +00:00
#address-bar-container {
padding: 10px;
background-color: #f1f1f1;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
2023-09-16 22:03:15 +00:00
2023-09-09 22:37:56 +00:00
#address-bar {
flex-grow: 1;
padding: 10px;
border: 1px solid #ccc;
border-radius: 3px;
margin-right: 10px;
}
2023-09-16 22:03:15 +00:00
2023-09-09 22:37:56 +00:00
#go-button {
padding: 10px 20px;
border: none;
background-color: #007bff;
color: white;
cursor: pointer;
border-radius: 3px;
}
2023-09-16 22:03:15 +00:00
2023-09-09 22:37:56 +00:00
#web-content {
flex-grow: 1;
}
2023-09-16 22:03:15 +00:00
#booting {
margin: 1em;
}
2023-09-09 22:37:56 +00:00
</style>
<title></title>
2023-09-16 22:03:15 +00:00
<script type="application/javascript" src="./index.js"></script>
2023-09-09 22:37:56 +00:00
</head>
<body>
<div id="browser-container">
<div id="address-bar-container">
2023-09-16 22:03:15 +00:00
<span id="booting">Booting</span>
<input type="text" id="address-bar" placeholder="Enter URL..." disabled>
<button id="go-button" disabled>Go</button>
2023-09-09 22:37:56 +00:00
</div>
<iframe id="web-content" src="about:blank" frameborder="0" style="width: 100%; height: 100%;"></iframe>
</div>
</body>
</html>