Skip to content

Instantly share code, notes, and snippets.

View twosmalltrees's full-sized avatar
🏠
Working from home

twosmalltrees

🏠
Working from home
View GitHub Profile
@twosmalltrees
twosmalltrees / index.html
Last active December 18, 2016 04:32
Basic A-Frame Scene
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello A-Frame!</title>
<script src="https://aframe.io/releases/0.4.0/aframe.js"></script>
</head>
<body>
<a-scene>
<a-box
@twosmalltrees
twosmalltrees / index.html
Last active December 18, 2016 00:00
Basic HTML with A-Frame
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello A-Frame!</title>
<script src="https://aframe.io/releases/0.4.0/aframe.js"></script>
</head>
<body>
// Our A-Frame scene goes here...
</body>