-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
executable file
·58 lines (52 loc) · 2.7 KB
/
contact.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
<!DOCTYPE html>
<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" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<section class="container">
<div class="page-header">
<h1>Contact</h1>
</div>
<div class="row">
<div class="col-sm-12">
<div class="btn-group btn-group-justified">
<a href="/index.html" class="btn btn-primary">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 active">Contact</a>
</div>
</div>
</div>
<div class="contact-info">
<br>
<h2><strong>Phone Number:</strong> <a href="tel:+14045851629">(404) 585-1629</a></h2>
<h2><strong>Email Address:</strong> <a href="mailto:[email protected]">[email protected]</a></h2>
<br>
<span>
<a href="https://github.com/xhamyd" class="fa fa-github"></a>
<a href="https://www.linkedin.com/in/dabuzzell/" class="fa fa-linkedin"></a>
<a href="https://soundcloud.com/david-buzzell" class="fa fa-soundcloud"></a>
<a href="https://www.youtube.com/user/thebuzzle" class="fa fa-youtube"></a>
</span>
</div>
</section>
</body>
</html>