-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (61 loc) · 3.11 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>About | Danielle Maddox</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Header & Navbar Section -->
<header>
<div class="container-fluid m-auto p-0">
<nav class="row navbar .navbar-expand-lg justify-content-between m-0 p-0">
<div class="navbar-brand col-md-6 col-sm-12" id="logo">Danielle Maddox</div>
<div class="nav navbar-right nav-fill">
<a class="nav-item nav-link active" href="index.html">About</a>
<a class="nav-item nav-link" href="portfolio.html">Portfolio</a>
<a class="nav-item nav-link" href="contact.html">Contact</a>
</div>
</nav>
</div>
</header>
<!-- Content & Footer -->
<div class="container-fluid m-auto" id="content">
<!-- Content -->
<div class="row d-flex justify-content-between">
<!-- left column for main content -->
<div class="col-md-8 col-sm-12 main-section">
<h1>About Me</h1>
<img src="assets/images/mek.jpg" class="auth-image" alt="Your Name">
<p>
Hi! My name is Danielle. I have a passion for connecting creative and technically-minded people. My love of technology and learning new things helps with this.
</p>
<p>
Through my work, I bring a customer-first approach to building ideas and solutions. I'm experienced in working with and managing in-house and remote teams, with a commitment to building consensus.
</p>
<p>
Outside of work, I love watching movies, cooking and spending time with friends and family. I'm lucky enough to have family in Austin who I get to see quite regularly.
</p>
<p>
I recently completed an 8 month trip around the world with my boyfriend. I met incredible people, learned about new cultures (and food!) and even took a couple of months of Spanish classes. We visited multiple cities and countries across Eastern Europe, Southeast Asia and South America. Don't ask me to pick a favorite!
</p>
</div>
<div class="col-md-4 col-sm-12 m-0 p-0">
<div class="sidebar">
<h2>Connect with Me</h2>
<a href="https://github.com/dmaddox" target="_blank"><img src="assets/images/gh.png" class="social" alt="GitHub" /></a>
<a href="https://www.linkedin.com/in/dmaddx/" target="_blank"><img src="assets/images/li.png" class="social" alt="LinkedIn" /></a>
<a href="https://stackexchange.com/users/12042471/dmaddox" target="_blank"><img src="assets/images/so.png" class="social" alt="Stack Overflow" /></a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
Copyright © 2017 Danielle Maddox
</footer>
</body>
</html>