-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (87 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio//Web Designer</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!-- Main_Logo/Nav-->
<header>
<h1>Taegan Loyzelle</h1>
<nav>
<a href="#about">About Me</a>
<a href="#work">Work</a>
<a href="#contact">Contact Me</a>
<a href="./Resume Taegan Loyzelle.docx (2021).pdf">Resume</a>
</nav>
</header>
<!--Banner-->
<section class="banner">
<div>
<h2>My Progress through Coding</h2>
</div>
</section>
<main class="page_wrap">
<!--About_Me-->
<section class="page_section" id="about">
<h2>About Me</h2>
<div>
<img src="./images/headshot01.png">
<p>My name is Taegan Loyzelle and I have experience in creating and delivering user-centric applications and solutions, I look forward to bringing my strong creative, technical, and analytical skills as a Full-Stack Web Developer. Some of the basic skills I have learned include HTML5, CSS3, JavaScript, jQuery, Express.js, React.js, Node.js, progressive web apps, agile methodology, computer science, database theory, MongoDB, MySQL, and Git.
</p>
<p>I have been acknowledged as a solution-focused professional with the ability to design and develop innovative applications using advanced technologies. In my training as a Full-stack Developer with UNC Charlotte, I collaborated closely with the application team to develop and implement 50+ full-stack web applications, ensuring optimal functionality, quality, and reliability.
</p>
</div>
</section>
<!--Portfolio_Container-->
<section class="page_section" id="work">
<h2>Work</h2>
<div class="flex_container">
<a href="https://helphub2022.herokuapp.com" class="flex_item helpHub">
<div>
<h3>Help Hub</h3>
<span>MySQL, Node & Express, Javascript, React, Heroku, Bootstrap, Auth0, and Datepicker</span>
</div>
</a>
<a href="https://cooper-and-dans-toybox.herokuapp.com" class="flex_item toyBox">
<div>
<h3>Cooper and Dans Toy Box</h3>
<span>Javascript, MySQL, Handlebars</span>
</div>
</a>
<a href="https://tloyzelle.github.io/Project-Marvel/" class="flex_item project_marvel">
<div>
<h3>Marvel Project</h3>
<span>Html, CSS, Javascript</span>
</div>
</a>
<a href="https://tloyzelle.github.io/Coding_Assessment/" class="flex_item coding_assessment">
<div>
<h3>Coding Assessment</h3>
<span>Web APIs</span>
</div>
</a>
<a href="https://tloyzelle.github.io/WorkDay_Scheduler/" class="flex_item scheduler">
<div>
<h3>Work Day Scheduler</h3>
<span>Javascript, Third-Party APIs</span>
</div>
</a>
</div>
</section>
<!--Contact-->
<section class="contact-section" id="contact">
<h2>Contact Me</h2>
<div>
<address>
<a href="tel:=3369600071">336.960.0071</a>
<a href="[email protected]">[email protected]</a>
<a href="https://github.com/tloyzelle">GitHub</a>
<a href="https://www.linkedin.com/in/taegan-loyzelle-14044720b/">LinkedIn</a>
</address>
</div>
</section>
</main>
</body>
</html>