-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<title>Challenge 1: First HTML</title>
</head>
<body>
<h1>👋 Hello, I'm Paula!</h1>
<div>
<h2>👩🏻💻 Who am I?</h2>
<p>
I'm deeply passionate about coding, continuous learning, and sharing knowledge through teaching. My ultimate
aspiration as a student is to become an exceptional developer, collaborating with a team of talented
individuals. I am particularly drawn to the role of a Full Stack Developer due to its inherent challenges that
require independent thinking, creativity, and problem-solving skills. I am eager to embark on this journey and
make a meaningful impact in the world of development.
</p>
</div>
<div>
<h2>🎯 Goals for 2023</h2>
<ul>
<li>Finish DevClub</li>
<li>Improve my social skills</li>
<li>Get a job</li>
</ul>
</div>
<div>
<h2>🔗 Links</h2>
<ul>
<li><a target="_blank" href="https://github.com/pullynnhah">GITHUB - Main</a></li>
<li><a target="_blank" href="https://github.com/dev-paulaabro">GITHUB - DevClub</a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/pullynnhah">LINKEDIN</a></li>
</ul>
</div>
<div>
<h2>🧞Who I wish was in DevClub</h2>
<ol>
<li>Zuza</li>
<li>Bea</li>
<li>Chloe</li>
</ol>
</div>
<figure>
<img src="./assets/paulaabro.jpeg" alt="Paula Rodrigues" />
<figcaption>Me!!!</figcaption>
</figure>
</body>
</html>