Skip to content

Instantly share code, notes, and snippets.

View thbland's full-sized avatar

Troy Bland thbland

View GitHub Profile
@thbland
thbland / index.html
Created August 9, 2023 20:08
Solar Eclipse ☀️ (Pure CSS)
<div id="root">
<div class="layer layer-1"></div>
<div class="layer layer-2"></div>
<div class="layer layer-3"></div>
<div class="layer layer-4"></div>
<div class="layer layer-5"></div>
<div class="layer layer-6"></div>
</div>
@thbland
thbland / index.html
Created August 7, 2023 20:20
Particle Shapes
<div id="canvas-container"></div>
<script src="//unpkg.com/react@16/umd/react.development.js"></script>
<script src="//unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<!-- could point to local version -->
<script src="//unpkg.com/office-ui-fabric-react/dist/office-ui-fabric-react.js"></script>
<div id='content'></div>
<header>
<div class="container py-5">
<div class="text-center h1 font-weight-bolder">
MY BLOG
</div>
<p class="text-center mt-3">
Welcome to the blog of
<span class="bg-dark text-white px-2">unknown</span>
</p>
</div>
@thbland
thbland / index.html
Created April 17, 2023 13:16
The FormData Object
<h1>The FormData API</h1>
<form>
<label for="title">Title</label>
<input type="text" name="title" id="title" value="Go to the beach">
<label for="body">Body</label>
<textarea id="body" name="body">Soak up the sun and swim in the ocean.</textarea>
@thbland
thbland / index.html
Created April 4, 2023 08:56
Web Components Example
<h1>Expenses</h1>
<!--first layout-->
<template id="expense-template">
<style>
#expenses {
display: flex;
}
.expense1 {
@thbland
thbland / index.html
Created March 24, 2023 00:43
React DailyUI - 022 - Search
<div id="app"></div>