-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (87 loc) · 4.02 KB
/
index.html
File metadata and controls
96 lines (87 loc) · 4.02 KB
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
<!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.0">
<link rel="stylesheet" href="./Assets/style.css">
<title>Alex Palmer Portfolio</title>
</head>
<body>
<header>
<div><h1>Alex Palmer</h1></div>
<nav>
<!-- Add nav a selector to customize text, and anchor elements to nav bar for nav links in header -->
<ul>
<li><a href="#about-me">About Me</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact-me">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<img class="center-img" src="./Assets/Images/AlexPalmer_img.jpeg" alt="Headshot 2019" />
<section id="about-me">
<div class="title">
<h1>About me</h1>
</div>
<div class="container">
<div class="right">
<p>
My name is Alex Palmer. I was born in Richmond, VA and I have lived here for my entire life. I am the manager of program business for Brandito. My initial goal with becomming a web developer is to help with my current role at Brandito.
</p>
</div>
</div>
</section>
<section id="work">
<div class="title">
<h1>My Work</h1>
</div>
<div class="container-work">
<div class="card">
<header>Crypto Tracker</header>
<a href="https://apalmer37.github.io/Crypto_Tracker_Project/">
<img src="./Assets/Images/crypto_tracker_SS.png" alt="crypto_tracker_project">
</a>
</div>
<div class="card">
<header>COVID-19 PPE Charity Store</header>
<a href="https://charity-store.herokuapp.com/">
<img src="./Assets/Images/COVID-19 PPE Charity Store.png" alt="PPE_Store">
</a>
</div>
<div class="card">
<header>Code Refactor</header>
<a href="https://apalmer37.github.io/HW1-Apalmer/">
<img src="./Assets/Images/hori_new_SS.png" alt="refactor">
</a>
</div>
<div class="card">
<header>Random Password Generator</header>
<a href="https://apalmer37.github.io/Javascript_PasswordGenterator_AlexPalmer/">
<img src="./Assets/Images/Password_Gen_SS.png" alt="password">
</a>
</div>
<div class="card">
<header>Work Day Scheduler</header>
<a href="https://apalmer37.github.io/Work_Day_Scheduler/">
<img src="./Assets/Images/work_day.png" alt="work_day">
</a>
</div>
</div>
</section>
</main>
<footer class="footer-contact" id="contact-me">
<div class="title">
<h1>Contact Me</h1>
</div>
<div class="footer-links">
<p> <a href= "mailto:alexpalmer37@gmail.com"> Email: alexpalmer37@gmail.com</a></p>
<p> Phone: 804-687-5366</p>
<p> <a href= "https://github.com/apalmer37?tab=repositories"> Github</a></p>
<p> <a href= "https://www.linkedin.com/in/alex-palmer-36a52948/"> Linkedin</a></p>
<p> <a href= "./Assets/Images/Resume.docx.pdf"> Resume</a></p>
</div>
</footer>
</body>
</html>