-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
91 lines (86 loc) · 5.5 KB
/
portfolio.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<title>Welcome to HMT3Design.com</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Oswald|Open+Sans+Condensed:300" rel="stylesheet">
</head>
<body>
<div id="header" class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<img src="img/hmt3design-header.png" height="130" width="300" class="img-responsive"/>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<p id="address-header"><strong>Harry M. Thomas III</strong><br>
<a href="mailto:[email protected]">[email protected]</a><br>
210.683.4821</p>
</div>
</div>
</div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<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="#">HMT3Design.com</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">Welcome</a></li>
<li><a href="resume.html">Resume</a></li>
<li class="active"><a href="portfolio.html">Portfolio<span class="sr-only">(current)</span></a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<h2>CodeUp Projects</h2>
<p>Javascript projects created as part of the <a href="http://codeup.com/" target="_blank">CodeUp</a> course.</p>
<div class="row text-center">
<div class="col-lg-2 col-md-4 col-sm-6"><a href="trek-simon.html"><img src="img/th_trek-simon.jpg" alt="Trek Simon game" class="img-thumbnail"></a><h4>Trek Simon</h4>
<p>The classic Simon game, created with a 'Star Trek: The Next Generation' LCARS interface.</p></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="weather_map.html"><img src="img/th_weather_page.jpg" alt="Weather map" class="img-thumbnail"></a><h4>Weather Forecast</h4>
<p>Weather forecast application, with the ability to select new cities by typing in the area or dragging and dropping the cursor.</p></div>
<div class="clearfix visible-sm-block"></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="calculator.html"><img src="img/th_calculator.jpg" alt="Calculator" class="img-thumbnail"></a><h4>Calculator</h4>
<p>Standard four-function calculator.</p></div>
</div>
<h2>Graphic Portfolio</h2>
<p>Links open in a new window.</p>
<div class="row text-center">
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/spurs-nation" target="_blank"><img src="img/th_SN.jpg" class="img-thumbnail"></a><h4>Spurs Nation</h4>
<p>Full-page graphics created for the weekly Spurs Nation magazine.</p></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/maps" target="_blank"><img src="img/th_map.jpg" class="img-thumbnail"></a><h4>Maps</h4>
<p>Locator maps created to higlight where an event happened</p></div>
<div class="clearfix visible-sm-block"></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/graphs" target="_blank"><img src="img/th_graphic.jpg" class="img-thumbnail"></a><h4>Graphics</h4>
<p>Straightforward graphics, using text, line graphs, bar graphs, pie charts, and similar iterations.</p>
</div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/tables" target="_blank"><img src="img/th_data_grid.jpg" class="img-thumbnail"></a><h4>Data
Grids</h4>
<p>Data arranged in a grid format; usually created in InDesign.</p></div>
<div class="clearfix visible-sm-block"></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/gridiron-program" target="_blank"><img src="img/th_magazine.jpg" class="img-thumbnail"></a><h4>Magazine
Design</h4>
<p>Layout and design created using a combination of InDesign, Illustrator and Photoshop.</p></div>
<div class="col-lg-2 col-md-4 col-sm-6"><a href="https://hmt3design.myportfolio.com/pcdj-uxui-skins" target="_blank"><img src="img/th_PCDJ.jpg" class="img-thumbnail"></a><h4>UX/UI Design</h4>
<p>Interface designs created for use with the PCDJ mobile DJ program, or as wallpaper for digital
devices.</p></div>
</div>
</div>
</body>
</html>