-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 733 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype HTML>
<html>
<head>
<title>codedamn HTML Playground</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<h1>Welcome to codedamn</h1>
<p>Hey there! This is a HTML/CSS/JS playground!</p>
<ul>
<li>You can edit these files....!</li>
<li>You can play with CSS/JS files</li>
<li>You can create files and folders here</li>
<li>Feel free to use it as your local development environment</li>
<li>hello world</li>
</ul>
<div id="time">Time right now: <span></span></div>
<script src="https://bit.ly/codedamn-web-console"></script>
<script src="/script.js"></script>
</body>
</html>