-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.01 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html>
<head>
<title>Bopes DB Cheatsheets</title>
<link rel="stylesheet" style="text/css" href="stylesheets/cheat-sheet.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1>Bopes DB Cheatsheet</h1>
<ul>
<li><a href="cheat-sheets/sql.html">SQL</a></li>
<li><a href="cheat-sheets/activerecord.html">ActiveRecord</a></li>
<li><a href="#">Home</a></li>
</ul>
</header>
<article>
<h2>Bopes Database Cheatsheets</h2>
<p>Please feel free to use these cheatsheets as you learn new data querying languages and ORMs. I wrote them in a way and presented syntax examples that made sense to me, so hopefully you find these helpful as well.</p>
<p>Use the links in the header bar to navigate this (very simple) site. The topics I've written so far are:</p>
<p><a href="cheat-sheets/sql.html">SQL</a></p>
<p><a href="cheat-sheets/activerecord.html">ActiveRecord</a></p>
</article>
</body>
</html>