Skip to content

Commit e5f969c

Browse files
feat: adds Talia's HTML README (#47)
* feat: adds HTML version of personal README to match GitHub markdown style * feat: adds style portion to HTML README; adds images folder * style: update font and border colors to match Dark Mode GitHub markdown * docs: improve alt text descriptions for images in HTML README
1 parent 9c4f79e commit e5f969c

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>README - Talia Crockett</title>
6+
<style>
7+
body {
8+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
9+
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
10+
font-size: 16px;
11+
line-height: 1.5;
12+
color: #24292e;
13+
background-color: #0d1116;
14+
padding: 40px;
15+
max-width: 800px;
16+
margin: auto;
17+
}
18+
19+
h1 {
20+
color: #f0f6fc;
21+
font-size: 2em;
22+
margin-top: 0;
23+
border-bottom: 1px solid #1b2026;
24+
padding-bottom: 0.3em;
25+
}
26+
27+
h2 {
28+
color: #f0f6fc;
29+
font-size: 1.5em;
30+
margin-top: 1.5em;
31+
border-bottom: 1px solid #1b2026;
32+
padding-bottom: 0.3em;
33+
}
34+
35+
p {
36+
margin-bottom: 1em;
37+
color: #f0f6fc;
38+
}
39+
40+
ul {
41+
padding-left: 2em;
42+
}
43+
44+
li {
45+
color: #f0f6fc;
46+
margin-bottom: 0.5em;
47+
}
48+
49+
img {
50+
max-width: 100%;
51+
height: auto;
52+
margin-top: 1em;
53+
}
54+
</style>
55+
</head>
56+
<body>
57+
<h1>Hi Everyone, I'm Talia Crockett</h1>
58+
59+
<h2>Introduction</h2>
60+
<p>
61+
Previously, I was a nursing major with the interest of pediatrics. However, in May 2025, I earned my associate's degree in Information Technology at Delaware Technical Community College. I found myself interested in web development, as well as UX and UI design. I can be extremely shy and introverted, but once you get to know me, I'm a bit of a goofball.
62+
</p>
63+
64+
<h2>Learning Styles</h2>
65+
<ul>
66+
<li>I tend to learn best with visual examples and hands-on experience.</li>
67+
<li>I tend to value solo focus time but also appreciate collaborations.</li>
68+
<li>I tend to benefit from structured guidance and clear expectations when learning something new.</li>
69+
</ul>
70+
71+
<h2>Personal Interests</h2>
72+
<p>
73+
Some of my favorite hobbies:
74+
</p>
75+
<ul>
76+
<li>Playing video games (RPGs, FPS, and simulator games)</li>
77+
<li>Watching anime and animated films</li>
78+
<li>Singing</li>
79+
<li>Reading thriller, mystery, and romance novels</li>
80+
</ul>
81+
82+
<h2>Goals</h2>
83+
<ul>
84+
<li>
85+
One of my goals is to grow in both front-end and back-end technologies. Although, I'm currently more interested with design and user experience, I'm curious to learn and understand back-end logic, server-side development, and databases.
86+
</li>
87+
<li>
88+
Another goal is to get better at writing clean, maintainable, and functionable code. As well as improve my communication skills whether in a collaboration or providing feedback.
89+
</li>
90+
<li>
91+
Long-term, I hope to work at one of my favorite video game companies, such as Rockstar, Mihoyo, etc. Also, I want to create aesthetically pleasing (but functional!) projects.
92+
</li>
93+
</ul>
94+
95+
<h2>Some of my favorite images! Featuring my mother along with my niece & nephew!</h2>
96+
<img src="./images/mommaandme.png" alt="A photo of my mom and me">
97+
<img src="./images/nieceandnephew.png" alt="A photo of my niece and nephew">
98+
99+
</body>
100+
</html>
2.12 MB
Loading
1.98 MB
Loading

0 commit comments

Comments
 (0)