-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 2.84 KB
/
index.html
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
<!doctype html>
<html lang = "en-us">
<head>
<meta charset = "utf-8">
<meta http-equiv = "X-UA-Compatible" content = "IE=edge">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<meta name = "author" content = "Roy Torley" >
<title>Roy Torley's Project Home Page</title>
<link href = "https://fonts.googleapis.com/css?family=Source+Serif+Pro" rel = "stylesheet">
<link href = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity = "sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
rel = "stylesheet" crossorigin = "anonymous">
<link href = "css/index.css" rel = "stylesheet">
</head>
<body>
<div class = "container"> <!-- Primary container block -->
<div class = "row"> <!-- Primary row block to house wood left border -->
<div class = "col-md-1"> <!-- Primary column to house wood left border -->
<div id = "left-border"></div>
</div>
<div class = "col-md-10">
<div class = "container"> <!-- container to house header and list -->
<div class = "row">
<div class = "col-md-12">
<h1>Welcome to Roy Torley's Project Home Page</h1>
<div></div>
</div>
</div>
</div>
</div>
</div>
<div class = "row">
<div class = "col-md-10 offset-md-1">
<div id = "list">
<ul>
<li><a href = "home_page/tongue_in_cheek_home_page.html">Tongue-in-cheek Home Page</a></li>
<li><a href = "Corbett_Travel_Club/CMSTravelClub.html">Corbett Middle School Travel Club - Bootstrap Example</a></li>
<li><a href = "fun_stuff_index/silly_index.html">HTML and CSS Scrapbook</a></li>
<li><a href = "gallery/gallery_index.html">HTML5 and CSS3 Gallery Project</a></li>
<li><a href = "IGBA/IGBA_Project.html">IGBADAT5 Igneous Database Location Visualization – Flexbox Example</a></li>
<li><a href = "Eggplant/EggplantFlyBy.html">A Little Fun Animation</a></li>
<li><a href = "WebGL/Galaxy01.html">Yet More Fun with the WebGL Graphics Language (Being fixed)</a></li>
<li><a href = "Cassini/Tribute_to_Cassini.html">A Pictorial Tribute to the Cassini Spacecraft</a></li>
<li><a href = "Oakland_Hills_Fire/Oakland_Hills_Fire_Storm.html">Images of the 1991 Oakland Hills Fire Storm</a></li>
<li><a href = "Inkscape_Tutorial/Inkscape_Tutorial_Contents.html">Roy Torley's
Inkscape Tutorial (in progress)</a></li>
</ul>
</div> <!-- End of id = list block -->
</div> <!-- End of col-md-10 block -->
</div> <!-- End of row block -->
</div> <!-- End of primary row block -->
</div> <!-- End of primary container block -->
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>