-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (73 loc) · 3.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="assets/images/icons/favicons/cubebw.png">
<title>Contact Page | Dalton Ricker</title>
<!-- Link to Reset CSS -->
<link href="assets/css/reset.css" type="text/css" rel="stylesheet">
<!--Link to CSS Stylesheet-->
<link href="assets/css/style.css" type="text/css" rel="stylesheet">
<!-- Link to Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
</head>
<body>
<header class="header">
<section class="nav-bar">
<div id="nav-title">
<h1 id="portfolio-name">Dalton Ricker</h1>
</div>
<div id="nav">
<ul>
<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>
</section>
</header>
<div class="wrapper">
<div class="content">
<section id="about-me">
<h1 id="page-name">Contact</h1>
<hr/>
<div id="contact-info">
<h3>Dalton Ricker</h3>
<h5>Phone: (470) 213-6773</h5>
<h5 id="my-email">Email: [email protected]</h5>
<h5>npm Card: npx daltonricker</h5>
<a href="https://www.linkedin.com/in/daltonricker" target="_blank"><i class="fab fa-linkedin fa-3x"></i></a>
<a href="https://github.com/SasquatchXYZ" target="_blank"><i class="fab fa-github-square fa-3x"></i></a>
<h5><a href="assets/files/Resume%20-%20Dalton%20Ricker.pdf" class="resume"
target="_blank">Resume</a></h5>
</div>
<div class="icons-2">
<img src="assets/images/icons/contact/nodejs.png" class="tools" alt="NodeJS" title="NodeJS">
<img src="assets/images/icons/contact/mongodb2.png" class="tools" alt="MongoDB" title="MongoDB">
<img src="assets/images/icons/contact/js.png" class="tools" alt="JavaScript" title="JavaScript">
<img src="assets/images/icons/contact/mysql.png" class="tools" alt="MySQL" title="MySQL">
<img src="assets/images/icons/contact/reactjs.png" class="tools" alt="React" title="React">
</div>
<div class="icons">
<img src="assets/images/icons/contact/git.png" class="tools" alt="Git" title="Git">
<img src="assets/images/icons/contact/html5.png" class="tools" alt="HTML5" title="HTML5">
<img src="assets/images/icons/contact/css3.png" class="tools" alt="CSS3" title="CSS3">
<img src="assets/images/icons/contact/bootstrap.png" class="tools" alt="Bootstrap" title="Bootstrap">
<img src="assets/images/icons/contact/jquerysmall.png" class="tools" alt="jQuery" title="jQuery">
</div>
</section>
<div class="spacer"></div>
</div>
</div>
<footer class="footer">
<p id="footer"> Copyright © 2018</p>
</footer>
<!-- Link to jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<!-- LInk to JavaScript -->
<script src="assets/javascript/app.js"></script>
</body>
</html>