Skip to content

Instantly share code, notes, and snippets.

View thomcrowe's full-sized avatar

Thom Crowe thomcrowe

View GitHub Profile
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "apigateway:*",
"Effect": "Allow",
"Resource": "arn:aws:apigateway:*::/restapis/GATEWAY_ID/*"
},
{
"Action": [

Keybase proof

I hereby claim:

  • I am thomcrowe on github.
  • I am thomcrowe (https://keybase.io/thomcrowe) on keybase.
  • I have a public key ASDspaVg1uLdCkQ6WDM2e8e5gWONtNZSXIQ7Bk-G8TllWAo

To claim this, I am signing this object:

@thomcrowe
thomcrowe / navbar
Created June 1, 2016 23:37
Navbar HTML and CSS
<!-- Navbar Info -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="/index.html">
<img alt="Brand" src="img/brand.jpg" width="40" height="40" align="middle" style="padding: 5px" alt="">
</a>
</div>
@thomcrowe
thomcrowe / contact.html
Created February 6, 2016 21:40
HTML for the Contact Page
<!DOCTYPE html>
<html lang="en">
<head>
<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="icon" type="image/ico" href="/favicon.ico">
<TITLE>Contact Me</TITLE>
@thomcrowe
thomcrowe / contact_styles.css
Created February 6, 2016 21:39
CSS style sheet for the contact page
html {
background: url(../img/contact_bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.header h1 {
text-align: center;
* { box-sizing: border-box; }
.container {
width: 80%;
margin: 0 auto;
}
.header h1 {
text-align: center;
}
@thomcrowe
thomcrowe / about.html
Created February 5, 2016 08:04
Lesson 1.4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<TITLE>About Me</TITLE>
<!-- Normalize CSS -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<TITLE>About Me</TITLE>
</head>