1
0
Fork 0

Checkpoint

This commit is contained in:
System 2017-10-10 12:57:38 +00:00
commit 7b1b0dba61
6 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,4 @@
{
"optOut": false,
"lastUpdateCheck": 1499855115516
}

3
.glitch-assets Normal file
View File

@ -0,0 +1,3 @@
{"name":"drag-in-files.svg","date":"2016-10-22T16:17:49.954Z","url":"https://cdn.hyperdev.com/drag-in-files.svg","type":"image/svg","size":7646,"imageWidth":276,"imageHeight":276,"thumbnail":"https://cdn.hyperdev.com/drag-in-files.svg","thumbnailWidth":276,"thumbnailHeight":276,"dominantColor":"rgb(102, 153, 205)","uuid":"adSBq97hhhpFNUna"}
{"name":"click-me.svg","date":"2016-10-23T16:17:49.954Z","url":"https://cdn.hyperdev.com/click-me.svg","type":"image/svg","size":7116,"imageWidth":276,"imageHeight":276,"thumbnail":"https://cdn.hyperdev.com/click-me.svg","thumbnailWidth":276,"thumbnailHeight":276,"dominantColor":"rgb(243, 185, 186)","uuid":"adSBq97hhhpFNUnb"}
{"name":"paste-me.svg","date":"2016-10-24T16:17:49.954Z","url":"https://cdn.hyperdev.com/paste-me.svg","type":"image/svg","size":7242,"imageWidth":276,"imageHeight":276,"thumbnail":"https://cdn.hyperdev.com/paste-me.svg","thumbnailWidth":276,"thumbnailHeight":276,"dominantColor":"rgb(42, 179, 185)","uuid":"adSBq97hhhpFNUnc"}

18
README.md Normal file
View File

@ -0,0 +1,18 @@
# My cool website
This file describes your project to the community. What's your cool website about? What makes it special?
ヽ(๏∀๏ )ノ
## ← index.html
Where you'll write the content of your website.
## ← styles.css
CSS files add styling rules to your content
## ← script.js
If you're feeling fancy you can add interactivity to your site with Javascript

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css">
<script src="/script.js" defer></script>
</head>
<body>
<h1>Hi there!</h1>
<p>
I'm your cool new webpage. Made with
<a href="https://www.glitch.com">Glitch</a>
</p>
</body>
</html>

1
script.js Normal file
View File

@ -0,0 +1 @@
console.log('hi');

3
styles.css Normal file
View File

@ -0,0 +1,3 @@
h1 {
color: fuchsia;
}