-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathListing_11.8.rhtml
42 lines (38 loc) · 1.31 KB
/
Listing_11.8.rhtml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Learn Enough Ruby Sample App</title>
<link rel="stylesheet" type="text/css" href="/stylesheets/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400"
rel="stylesheet">
</head>
<body>
<a href="/" class="header-logo">
<img src="/images/logo_b.png" alt="Learn Enough logo">
</a>
<div class="container">
<div class="content">
<h1>About</h1>
<p>
This site is the final application in
<a href="https://www.learnenough.com/ruby-tutorial"><em>Learn Enough Ruby
to Be Dangerous</em></a>
by <a href="https://www.michaelhartl.com/">Michael Hartl</a>,
a tutorial introduction to the
<a href="https://www.ruby-lang.org/en/">Ruby programming language</a> that
is part of
<a href="https://www.learnenough.com/">LearnEnough.com</a>.
</p>
<p>
<em>Learn Enough Ruby to Be Dangerous</em> is a natural prerequisite to
the <a href="https://www.railstutorial.org/"><em>Ruby on Rails
Tutorial</em></a>, a book and video series that is one of the leading
introductions to web development. <em>Learn Enough Ruby</em> is also an
excellent choice <em>after</em> the <em>Rails Tutorial</em> for those who
prefer to start with the latter first.
</p>
</div>
</div>
</body>
</html>