-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 loc) · 6.12 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
<!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">
<title>Dan Hallada</title>
<!-- Bootstrap -->
<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 href="https://fonts.googleapis.com/css?family=Didact+Gothic&display=swap" rel="stylesheet">
<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="index.css" />
</head>
<body>
<main>
<nav class="navbar navbar-expand-lg sticky-top navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a href="index.html">About</a>
</li>
</ul>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigationbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse w-100 order-3 dual-collapse2" id="navigationbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a href="portfolio.html">Portfolio<img class="icon" src="https://image.flaticon.com/icons/png/512/14/14573.png"></a>
</li>
<li class="nav-item active">
<a href="https://medium.com/@danhallada" target="_blank">Blog<img class="icon" src="https://miro.medium.com/max/390/1*emiGsBgJu2KHWyjluhKXQw.png"/></a>
</li>
<li class="nav-item active">
<a href="https://www.linkedin.com/in/daniel-hallada-307b9092" target="_blank">Linkedin<img class="icon" src="https://cdn1.iconfinder.com/data/icons/logotypes/32/square-linkedin-512.png"/></a>
</li>
<li class="nav-item active">
<a href="https://github.com/hdaniel1/" target="_blank">Github<img class="icon" src="https://image.flaticon.com/icons/svg/25/25231.svg"/></a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron">
<img class="img-fluid mx-auto d-block" id="headshot" src="./Images/headshot.jfif"/>
<div class="container" id="description" >
<h1 class="display-4"><i>Project Manager Turned Software Engineer</i></h1>
<p class="ml-4">Hello! My name is Dan Hallada and I am a software engineer in the Washington D.C. area.</p>
<p class="ml-4">Before I discovered my love of programming, I was a project manager for a Microsoft Partner, leading teams of developers and consultants to put working software in the hands of customers. While in that role, I worked with technologies like SQL and HTML / CSS, which sparked my interest in pursuing programming as a career.
As a result, I applied for and got into the FlatIron School's software engineering immersive, an intensive three-month program focusing on technologies such as Ruby on Rails, Javascript and React.js.</p>
<p class="ml-4">My background in project management (and before that, customer support) allows me to bring strong organizational, communication, and troubleshooting skills to any project and I can work equally well in both team-based environments or flying solo.
Learning new technologies and solving problems was what drew me to this field originally and is a mindset I continue to cultivate as I move forward both personally and professionally.</p>
<p class="ml-4">Besides programming, I have many other hobbies, but in particular I enjoy listening to and playing music, the outdoors, video games, reading and spending time with family. Please use this website to browse through some of the projects I've worked on / are currently working on and don't hesitate to reach out if you want to collab!</p>
</div>
</div>
<div class="container" id="contact-container">
<div>
<p id="form-message"><i><u>Feel free to reach out with any questions, project ideas, or feedback!</u></i></p>
</div>
<form method="POST" action="https://formspree.io/hallada.daniel@gmail.com">
<div class="contact-info-group">
<label><span><u><b>Name:</b></u></span>
<input type="text" name="name" placeholder="Name">
</label>
<label><span><u><b>E-mail:</b></u></span>
<input type="email" name="_replyto" placeholder="E-mail">
</label>
</div>
<label><span><u><b>Message:</b></u></span>
<textarea name="message" id="" cols="70" rows="5" placeholder="Message"></textarea>
</label>
<div class="button-wrap">
<input type="submit" value="Send" id="submit-button">
</div>
</form>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<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>
</main>
<footer>
<p>© Dan Hallada | 2019</p>
</footer>
</body>
</html>