-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjects.html
More file actions
75 lines (65 loc) · 4.3 KB
/
Projects.html
File metadata and controls
75 lines (65 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Projects - Michael S. Fox</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./resources/style-fox-proj.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand bg-info" href="./index.html">Michael S. Fox</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse pr-5" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<!-- Dropdown menu for my other site links -->
<li class="nav-item dropdown active">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
About
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item active" href="https://foxms1010.github.io/Projects.html">Project Index</a>
<a class="dropdown-item" href="https://foxms1010.github.io/index.html">My Profile</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- Main Content of Page using containers -->
<div class="container mt-5 mb-5" >
<div class="card">
<div class="card-body">
<h4 class="card-title text-info">Project Index:</h4>
<ul class="list-unstyled mt-4">
<a href="./FoxProj/web-EqWeatherAnalysis/index.html" class="text-dark">
<li class="media pb-3">
<img class="mr-3" src="./images/equatorsign.png" alt="World Map" width="125" height="auto">
<div class="media-body">
<h5 class="mt-0 mb-1">Equatorial Weather Analysis</h5>
A glimpse into weather conditions at different latitudes around the earth in order to address
the question: "What is the weather like as you get closer to
the equator? And before you answer 'hotter', how would you prove it?" </div>
</li>
</a>
<li class="media my-4">
<img class="mr-3 rounded" src="./images/coming-soon_1284-3622.jpg" alt="Coming Soon placeholder" width="125" height="auto">
<div class="media-body">
<h5 class="mt-0 mb-1">Others coming soon!</h5>
I will add my other projects here as I get them posted to the web.
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Bootstrap JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>