-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (95 loc) · 4.94 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About Adam Mattas</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="assets/css/bootstrap.css" media="screen">
<link rel="stylesheet" href="assets/css/custom.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23019901-1']);
_gaq.push(['_setDomainName', "bootswatch.com"]);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand" title="Full Stack Developer">Adam Mattas</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row row-top">
<div class="col-md-9">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">About Me</h3>
</div>
<div class="panel-body">
<div class="width-100 overline">
<img class="bio-pic" src="assets/images/adam.jpg" alt="Profile picture" />
<p>Greetings! My name is Adam Mattas. I have been learning to develop websites for nearly three years now. While acquiring these new skills I have been able to offer my assistance to friends, family members, and even a non-profit organization. I am glad to say that I was able to provide them with a web presence they can be proud of.</p>
<p>My career as a developer began in 2013, when I decided that I was going to start building a site for original musicians. This site would be dynamic, eye catching, and finished in no time. And really, why wouldn't it be? Well, since I am still attempting to construct <a class="p-link" href="http://audiotheory.com/" target="_blank">AudioTheory.com</a>, I guess time really does make fools of us all.</p>
<p class="no-bottom-margin">The challenges that are presented while learning to code can be daunting. However, overcoming the obstacles I have encountered has been equally rewarding.</p>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Connect with Me</h3>
</div>
<div class="panel-body">
<div class="width-100 overline">
<a href="https://github.com/adamfader">
<img class="icon-social float-left" src="assets/images/1462182866_github.png" alt="GitHub Icon" title="GitHub" />
</a>
<a href="https://www.linkedin.com/in/adam-mattas-13217711b?trk=nav_responsive_tab_profile">
<img class="icon-social float-left margin-left-social" src="assets/images/1462182883_linkedin.png" alt="LinkedIn Icon" title="LinkedIn" />
</a>
<a href="http://stackoverflow.com/users/6289027/adam-m">
<img class="icon-social float-left margin-left-social" src="assets/images/1462182812_overflow.png" alt="Stackoverflow Icon" title="Stack Overflow" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer">© Copyright 2016 Adam Mattas</div>
</footer>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>