Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .config/configstore/update-notifier-npm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"optOut": false,
"lastUpdateCheck": 1499855115516
}
4 changes: 4 additions & 0 deletions .glitch-assets
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{"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"}
{"name":"BG.png","date":"2018-03-02T05:52:30.638Z","url":"https://cdn.glitch.com/75a5f7e6-789a-4ff7-b9fd-f95113370adc%2FBG.png","type":"image/png","size":3840577,"imageWidth":2200,"imageHeight":1467,"thumbnail":"https://cdn.glitch.com/75a5f7e6-789a-4ff7-b9fd-f95113370adc%2Fthumbnails%2FBG.png","thumbnailWidth":330,"thumbnailHeight":221,"dominantColor":"rgb(236,236,236)","uuid":"WtwpoX85YThdhiIN"}
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# hackathon-test
# 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

76 changes: 76 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html>
<head>
<title>Yes, a really good book!</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">
<link href="/jquery-ui/jquery-ui.css" type="text/css" rel="stylesheet">
<link href="/jquery-ui/jquery-ui.structure.css" type="text/css" rel="stylesheet">
<link href="/jquery-ui/jquery-ui.theme.css" type="text/css" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.min.js"></script>
<script src="/script.js" defer></script>
</head>
<body>
<div class="page-container">
<div class="page-back">
<nav>
<div class="logo"><img src="example-logo.png" width="150"></div>
<ul>
<li><a href="#" class="hover">Home</a></li>
<li><a href="/maths" class="hover">Maths</a></li>
<li><a href="#" class="hover">QuickMaths</a></li>
<li><a href="#" class="hover">Wow Math</a></li>
<li><a class="active" href="#">Log-In Maths</a></li>
</ul>
</nav>
<div class="content">
<div id="slider1" class="slider">
<div id="custom-handle1" class="ui-slider-handle custom-handle"></div>
</div>
<div id="slider2" class="slider">
<div id="custom-handle2" class="ui-slider-handle custom-handle"></div>
</div>
<fieldset>
<label for="color1">Select a color</label>
<select name="color1" id="color1">
<option value="red">RED</option>
<option value="green">GREEN</option>
<option value="blue">BLUE</option>
<option value="white">WHITE</option>
<option value="black">BLACK</option>
<option value="surprise">SURPRISE ME</option>
</select>
<label for="color2">Select a color</label>
<select name="color2" id="color2">
<option value="red">RED</option>
<option value="green">GREEN</option>
<option value="blue">BLUE</option>
<option value="white">WHITE</option>
<option value="black">BLACK</option>
<option value="surprise">SURPRISE ME</option>
</select>
<span class="widget">
<button id="buttonstart">Start</button>
<button id="buttonstop">Stop</button>
</span>
<input type="text" id="repo-input" placeholder="user/repo"/>
<button id="repo-button">Visualize Repository</button>
<input type="text" id="zip-input" placeholder="Zip-Code or City"/>
<button id="zip-button">Visualize Weather</button>
</fieldset>

</div>
</div>
</div>
</body>
</html>
Loading