DOCTYPE HTML
DOCTYPE HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
.browser-window {
width: 80%;
max-width: 1000px;
background-color: #fff;
border-radius: 8px;
.browser-header {
display: flex;
align-items: center;
padding: 8px;
background-color: #e0e0e0;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
.browser-header .buttons {
display: flex;
gap: 8px;
margin-right: 16px;
width: 12px;
height: 12px;
border-radius: 50%;
.button.close {
background-color: #ff5f56;
.button.minimize {
background-color: #ffbd2e;
.button.maximize {
background-color: #27c93f;
.address-bar {
flex-grow: 1;
border-radius: 4px;
font-size: 14px;
color: #333;
.browser-content {
padding: 16px;
</style>
</head>
<body>
<div class="browser-window">
<div class="browser-header">
<div class="buttons">
</div>
</div>
<div class="browser-content">
<h1>Welcome to Example.com</h1>
</div>
</div>
</body>
</html>