-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·92 lines (87 loc) · 4.26 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
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
92
<!DOCTYPE html>
<!-- Welcome to my Online Resume Website! The main framework for this website is Bootstrap, but all of the other
HTML/CSS/JS files have been designed solely by myself, using only online tutorials and classes for reference. -->
<html lang="en-US" dir="ltr">
<head>
<!-- Primary Meta Content -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Unordered Meta Content -->
<title>David Buzzell</title>
<meta name="author" content="David Buzzell">
<meta name="description" content="Online Resume for David Buzzell">
<link rel="shortcut icon" href="/favicon.ico">
<!-- Scripts -->
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script defer src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<!-- Stylesheets -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Encode+Sans:300,500,700">
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<nav class="navbar">
<!-- Just to create some header row space -->
</nav>
<section class="container">
<div class="jumbotron">
<h1><a href="mailto:[email protected]" id="name_header">David Buzzell</a></h1>
<h3>Software Development Manager at DSP Concepts</h3>
</div>
<div class="well">
<p id="welltext">
Building audio software solutions to support the music technology industry
</p>
</div>
<div class="row projectrow">
<div class="col-sm-12">
<div class="btn-group btn-group-justified">
<a href="/index.html" class="btn btn-primary active">Home</a>
<a href="/resume.html" class="btn btn-primary">Resume</a>
<a href="/work/index.html" class="btn btn-primary">Experience</a>
<a href="/projects/index.html" class="btn btn-primary">Projects</a>
<a href="/contact.html" class="btn btn-primary">Contact</a>
</div>
</div>
</div>
<div class="row homeimg">
<figure class="col-md-6">
<div class="overlay-box">
<a href="/resume.html">
<img src="/images/homeimg.jpg" class="img-thumbnail" alt="Access my Resume Website">
<div class="overlay">
<div class="homeimg-text">
<p>
<br>
<br>
Online Resume:<br>
Professional Work
</p>
</div>
</div>
</a>
</div>
</figure>
<figure class="col-md-6">
<div class="overlay-box">
<!-- <a href="https://music.davidbuzzell.com/love-is-dead"> -->
<a href="https://davidbuzzell.bandcamp.com/">
<img src="/images/5sog-demo-pic.jpg" class="img-thumbnail" alt="Access my Music Production Website">
<div class="overlay">
<div class="homeimg-text">
<p>
<br>
<br>
Music Production:<br>
Tracks and Materials
</p>
</div>
</div>
</a>
</div>
</figure>
</div>
</section>
</body>
</html>