-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
32 lines (27 loc) · 1.28 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
29
30
31
32
<!--group4 is a group that is number 4.-->
<html>
<head>
<title>Group 4 - Welcome to Ruby</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styleSheet.css">
<link rel="shortcut icon" type="image/png" href="ruby.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
</head>
<body>
<div id="navBarTemplate">
<script>
$(function(){
$("#navBarTemplate").load("navBarTemplate.html");
});
</script>
</div>
<div id="content">
<h2 id="welcome-message">Welcome to Ruby!</h2>
<p>
Designed to be simplistic, yet have lots of functionality. It is purely object oriented; everything is an object. Inferred typing and implied function returns make it elegant and simple.
</p>
<p>"I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language." <i>-Yukihiro Matsumoto, Google TechTalk 2008</i></p>
</div>
</body>
</html>