Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 866 Bytes

README.md

File metadata and controls

40 lines (34 loc) · 866 Bytes

Rainbow castle!

This is using the "github pages" feature, see https://pages.github.com/
See formatting guide

The published website can be seen at http://gitcases.github.io/rainbowcastle.
You may need hard refresh (Ctrl+Shift+R) to see changes.

The castle

<style type="text/css"> .roof { border: 100px solid transparent; width: 200px; border-top: none; border-bottom-color: red; box-sizing: border-box; } .ground-floor { background: grey; height: 200px; width: 200px; position: relative; } .ground-floor > .door { background: white; position: absolute; bottom: 0; right: 50px; left: 100px; top: 100px; } </style>
<script>alert("Welcome to the rainbow castle");</script>