html
html
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
<!-- Created by Oceanlight -->
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id="time" onclick="setFormat()"></p>
<p id="date"></p>
<p id="moonPhase"></p>
<button id="toggleFormat" class="timebutton" onclick="setFormat()">24-hr time</button>
<br />
<br />
<a href="https://code.sololearn.com/W1mgu6mLP2E5/?ref=app">Snake Game</a>
<style>
.timebutton {
background-color: #1E90FF;
color: white;
padding: 12px;
font-size: 16px;
border: none;
cursor: pointer;
}
.timebutton:hover, .timebutton:focus {
background-color: #4169E1;
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run