-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·55 lines (55 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Story</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="fonts/fonts.css" />
<link
rel="icon"
type="image/x-icon"
href="https://practicum-content.s3.us-west-1.amazonaws.com/web-code/favicon.ico"
/>
</head>
<body class="page">
<header class="header">
<div class="overlay">
<p class="header__banner">Software Engineer</p>
<h1 class="header__title">Eddison Torres</h1>
</div>
</header>
<main class="content">
<div class="card">
<img src="./images/first_piece.jpg" alt="example of my work" class="card__image">
<div class="card__content">
<h2 class="card__title">Artist...Sometimes?</h2>
<p class="card__text">I have started taking more time in finding my artistic expression again. Maybe I can actually put some more time in soon.</p>
</div>
</div>
<div class="card">
<img src="./images/billards.jpeg" alt="overhead shot of billard balls after breaking" class="card__image">
<div class="card__content">
<h2 class="card__title">Game Time</h2>
<p class="card__text">I have found myself celebrating other's birthdays playing more Billards than I would have thought growing up, Atleast it lets me see the world in a different angle.</p>
</div>
</div>
<div class="card">
<img src="./images/Nova.jpg" alt="Picture of cat" class="card__image">
<div class="card__content">
<h2 class="card__title">She Is The Night</h2>
<p class="card__text">Everyone has a bestfriend, we all have different types of friends. This phantom in the night has been the best friend someone can ask for, just asks for a lap and some peace. Thank you for always being there for me little buddy.</p>
</div>
</div>
<div class="card">
<img src="./images/D20.jpg" alt="D20 (20 sided dice) for table top games" class="card__image">
<div class="card__content">
<h2 class="card__title">R&D</h2>
<p class="card__text">Like all creative things, some tend to cross in a way that may have not been imagined before. I am lucky to find a new way to flesh out a story world that i have been working one, granted its been slow going, but as for all things time and patience make the good, great.</p>
</div>
</div>
</main>
<footer class="footer">
<p class="signature">© Eddison Torres 2024</p>
</footer>
</body>
</html>