Skip to content

Instantly share code, notes, and snippets.

View seekingcat's full-sized avatar

Melanie Hudson seekingcat

View GitHub Profile
@seekingcat
seekingcat / restful_routes.md
Created January 30, 2018 10:14 — forked from alexpchin/restful_routes.md
7 Restful Routes
URL HTTP Verb Action
/photos/ GET index
/photos/new GET new
/photos POST create
/photos/:id GET show
/photos/:id/edit GET edit
/photos/:id PATCH/PUT update
/photos/:id DELETE destroy
@seekingcat
seekingcat / index.html
Created August 10, 2017 23:27
Practice1
<div class="container-fluid">
<div class="container-fluid">
<nav class="navbar">
<ul>
<li><a href="#about">About</a>
<li><a href="#examples">Portfolio
<li><a href="#contact">Contact</a>
</ul>
</nav>