simple-page.html•1.72 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BrowserLoop Test Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
background: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 10px;
backdrop-filter: blur(10px);
}
h1 {
margin: 0 0 20px 0;
font-size: 2.5em;
}
p {
margin: 10px 0;
font-size: 1.2em;
}
.test-element {
margin: 20px 0;
padding: 20px;
background: rgba(255, 255, 255, 0.2);
border-radius: 5px;
}
.status {
color: #4CAF50;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>BrowserLoop Test Page</h1>
<p>This is a simple test page for screenshot testing.</p>
<div class="test-element">
<p>Test Element</p>
<p class="status">✅ Page Loaded Successfully</p>
</div>
<p>Timestamp: <span id="timestamp"></span></p>
</div>
<script>
document.getElementById('timestamp').textContent = new Date().toISOString();
</script>
</body>
</html>