-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjects.html
73 lines (70 loc) · 1.99 KB
/
Projects.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Projects</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<nav class="navbar">
<ul>
<li>
<a href="./"><button>Homepage</button></a>
</li>
<li>
<a href="About_Me"><button>About</button></a>
</li>
<li>
<a href="Projects"><button>Projects</button></a>
</li>
<li>
<a href="Research"><button>Research</button></a>
</li>
<li>
<a href="Classes"><button>Classes</button></a>
</li>
</ul>
</nav>
</header>
<div class="main_content">
<nav class="breadcrumbs">
<ol itemscope="" itemtype="https://schema.org/BreadcrumbList">
<li
itemprop="itemListElement"
itemscope=""
itemtype="https://schema.org/ListItem"
>
<a href="https://souma4.github.io/" itemprop="item"
><span itemprop="name">Home</span></a
>
<meta itemprop="position" content="1" />
</li>
<span class="sep">/</span>
<li class="current">Projects</li>
</ol>
</nav>
<h1>Projects</h1>
<p>
Below are the projects that I have worked on. <br />
Click on the project to learn more about it and access it's github page.
</p>
<div class="projects">
<ul>
<li>
<a href="https://github.com/souma4/Forest_Generation">
Forest Generation:</a
>
Generates forests given multiple parameters, a quaint simulation
</li>
<li>
<a href="https://github.com/souma4/Fire_Regime_Departure">
Fire Regime Departure:</a
>
Quantifies "holistic" fire-regime departure across western US
forested landscapes
</li>
</ul>
</div>
</div>
</body>
</html>