-
Notifications
You must be signed in to change notification settings - Fork 1
/
index_styled_freeb
55 lines (47 loc) · 1.94 KB
/
index_styled_freeb
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
<!DOCTYPE html>
<html>
<!-- This is a template for your home page for the class -->
<!-- Replace the sample content with your own -->
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>A Starter Page Template</title>
<!-- If you would like to use an external CSS stylesheet for this and other pages in your site uncomment the following line and create a file called "styles.css" with your styles in the home directory of your portfolio -->
<!-- <link rel="stylesheet" type="text/css" href="styles.css"> -->
<!-- From Will Buckler - The style changes I made were changing the font thickness, font style to sans serif, and the background highlight color to yellow -->
<style type=text/css>
p.thicker {
font-weight: 999;
}
p.sansserif {
font-family: Arial, Helvetica, sans-serif;
}
a:link {
background-color: yellow;
}
</style>
</head>
<body>
<h1>My Geography 485L/585L Home Page</h
<p class="thicker">About me</p>
<p>I'm taking this course to extend what I know within my BS Geography degree. I'm interesting in learning more about QGIS.</p>
<h2>Topics I'm interested in</h2>
<ul>
<li>Snowboarding</li>
<li>GIS</li>
<li>more topics ...</li>
</ul>
<h2>Types of data I have worked with (themes & formats)</h2>
<ul>
<li>data type 1</li>
<li>data type 2</li>
<li>more data types ...</li>
</ul>
<h2>Milestones</h2>
<p><b href="hello-world.html">Hello World</b></p>
<p><a href="http://freebord.com" target="_blank">Milestone 2</a></p>
<p><b href="https://www.w3schools.com/css/tryit.asp?filename=trycss_font-weight">style change - font thickness</b></p>
<p><a href="https://www.google.com/maps/@33.788099,-106.4882017,15z/data=!4m2!6m1!1s1Zk1aut-fHbWmwQGa-fql9gaF0n2ezzMj?hl=en" target="_blan">Milestone 3: Google Map preview of shooting range.</a></p>
<h2>Deep Dives</h2>
<p class="sansserif"><b href="">Deep Dive 1</b></p>
</body>
</html>