-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebdev.html
More file actions
92 lines (79 loc) · 3.69 KB
/
webdev.html
File metadata and controls
92 lines (79 loc) · 3.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="money.ico">
<title>RTR IV</title>
<!-- custom fonts -->
<link href="https://fonts.googleapis.com/css?family=Cinzel|Josefin+Slab|Rye" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/RTRlogo.png" alt="Robert Tripp Ross IV"></a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="about.html">WHO AM I?</a></li>
<li><a href="oop.html">OOP</a></li>
<li class="active"><a href="webdev.html">WEB DEVELOPMENT</a></li>
<li><a href="photography.html">PHOTOGRAPHY</a></li>
<li><a href="music.html">MUSIC</a></li>
<li><a href="mailto:robert.ross.iv@icloud.com">EMAIL</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Web Technologies</h1>
<p>Web Technologies, <em>not</em> languages; control the layout and display of websites. With one exception: <b>Javascript</b>.</p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2>HTML</h2>
<p>Hyper Text Markup is in charge of the baseline layout of websites, on a base-level.</p>
</div>
<div class="col-md-4">
<h2>CSS</h2>
<p>Cascading Style Sheets, is in charge of the styles and colors of websites.</p>
</div>
<div class="col-md-4">
<h2>JavaScript</h2>
<p>JavaScript is the sole true computer programming language, used on the internet.</p>
</div>
</div>
<hr>
<footer>
<p>© RTR IV 2017</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>