-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
48 lines (47 loc) · 1.38 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World - Google Cloud Server</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 100px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
h1 {
font-size: 3em;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.container {
background: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 15px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.status {
margin-top: 20px;
padding: 10px;
background: rgba(255,255,255,0.2);
border-radius: 8px;
}
</style>
</head>
<body>
<div class="container">
<h1>Hello World! 🌍</h1>
<p>Velkommen til min Google Cloud server!</p>
<div class="status">
<strong>Status:</strong> Server kjører ✅<br>
<strong>Tidspunkt:</strong> <span id="timestamp"></span>
</div>
</div>
<script>
document.getElementById('timestamp').textContent = new Date().toLocaleString('nb-NO');
</script>
</body>
</html>