-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
33 lines (30 loc) · 1.01 KB
/
Index.html
File metadata and controls
33 lines (30 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Apple Browser</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="browser-container">
<!-- Header mit Logo -->
<div class="header">
<h1>🍏 Green Apple Browser</h1>
</div>
<!-- Navigation Bar -->
<div class="navbar">
<button id="back-btn">← Zurück</button>
<button id="forward-btn">Vorwärts →</button>
<button id="reload-btn">⟲ Neu laden</button>
<input type="text" id="url-input" placeholder="URL eingeben (z.B. https://google.com)">
<button id="go-btn">Go</button>
</div>
<!-- Browser Display Area -->
<div class="browser-content">
<iframe id="browser-frame" src="https://www.google.com"></iframe>
</div>
</div>
<script src="script.js"></script>
</body>
</html>