-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (153 loc) · 6.26 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carolyn Hudson Portfolio</title>
<link rel="stylesheet" href="./assets/style.css" />
</head>
<body>
<header>
<h1>
<a>Carolyn Hudson</a>
</h1>
<nav>
<ul>
<li>
<a href="#about">About Me</a>
</li>
<li>
<a href="#work">Work</a>
</li>
<li>
<a href="#contact">Contact Me</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<h2></h2>
</section>
<section class="sections">
<aside>
<h2 id="about" class="section-title">ABOUT ME</h2>
</aside>
<div class="about">
<div class="about-info">
<p>
Hello! My name is Carolyn. I am currently a Certified Veterinary Nurse, but I am learning to code
throught the University of Wisconsin - Madison's Extended Campus. Stay tuned for updates!
</p>
</div>
<div class="profile-image">
<img src="./images/profile-picture.jpg" alt="Carolyn Hudson with her dog, Oliver" />
</div>
</div>
</section>
<section class="sections">
<aside>
<h2 id="work" class="section-title">WORK</h2>
</aside>
<div class="work">
<!-- <a href="https://cghudson.github.io/run-buddy/" target="_blank" id="main-project" class="project">
<h3 class="project-title">Run Buddy</h3>
</a> -->
<a href="https://mazattack1999.github.io/meditation-buddy/" target="_blank" class="project"
id="meditation-buddy">
<div class="banner">
<h3 class="project-title">Meditation Buddy</h3>
<h6>JavaScript, HTML, Bulma/CSS</h6>
</div>
</a>
<a href="https://book-bits-blog.herokuapp.com/" target="_blank" class="project" id="book-bits">
<div class="banner">
<h3 class="project-title">Book Bits</h3>
<h6>JavaScript, Handlebars, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://cghudson.github.io/password-generator/" target="_blank" class="project"
id="password-generator">
<div class="banner">
<h3 class="project-title">Password Generator</h3>
<h6>JavaScript, HTML, CSS</h6>
</div>
</a>
<a href="https://cghudson.github.io/weather-dashboard/" target="_blank" class="project"
id="weather-dashboard">
<div class="banner">
<h3 class="project-title">Weather Dashboard</h3>
<h6>JavaScript, HTML, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://cghudson.github.io/work-day-scheduler/" target="_blank" class="project"
id="work-day-scheduler">
<div class="banner">
<h3 class="project-title">Work Day Scheduler</h3>
<h6>JavaScript, HTML, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://cghudson.github.io/code-quiz/" target="_blank" class="project" id="code-quiz">
<div class="banner">
<h3 class="project-title">Code Quiz</h3>
<h6>JavaScript, HTML, CSS</h6>
</div>
</a>
<a href="https://carolyn-tech-blog.herokuapp.com/" target="_blank" class="project" id="tech-blog">
<div class="banner">
<h3 class="project-title">Tech Blog</h3>
<h6>JavaScript, Handlebars, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://github.com/cghudson/e-commerce" target="_blank" class="project" id="e-commerce">
<div class="banner">
<h3 class="project-title">E-Commerce</h3>
<h6>JavaScript, Node.js, MySQL</h6>
</div>
</a>
<a href="https://github.com/cghudson/employee-tracker" target="_blank" class="project" id="employee-tracker">
<div class="banner">
<h3 class="project-title">Employee Tracker</h3>
<h6>JavaScript, Node.js, MySQL</h6>
</div>
</a>
<a href="https://carolyn-note-taker.herokuapp.com/" target="_blank" class="project" id="note-taker">
<div class="banner">
<h3 class="project-title">Note Taker</h3>
<h6>JavaScript, HTML, Node.js, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://github.com/cghudson/team-profile-generator" target="_blank" class="project" id="team-profile-generator">
<div class="banner">
<h3 class="project-title">Team Profile Generator</h3>
<h6>JavaScript, HTML, Node.js, Bootstrap/CSS</h6>
</div>
</a>
<a href="https://github.com/cghudson/readme-generator" target="_blank" class="project" id="readme-generator">
<div class="banner">
<h3 class="project-title">README Generator</h3>
<h6>JavaScript, Inquirer</h6>
</div>
</a>
</div>
</section>
<section class="sections">
<aside>
<h2 id="contact" class="section-title">CONTACT ME</h2>
</aside>
<div class="contact">
<p>
Email: <a href="mailto:cghudson@uwalumni.com">cghudson@uwalumni.com</a>
</p>
<p>
<a href="https://github.com/cghudson" target="_blank">GitHub</a>
</p>
<p>
<a href="https://www.linkedin.com/in/carolyn-hudson-229351228/" target="_blank">LinkedIn</a>
</p>
</div>
</section>
<footer>
<p><em>Created by</em> <strong>Carolyn Hudson</strong></p>
</footer>
</body>
</html>