Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub
↵
Jump to
↵
In this user
All GitHub
↵
Jump to
↵
In this repository
All GitHub
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
laq20002
/
DMD-3470
Public
generated from
bpd01001/dmd-3470-assignment-repo
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
2b5372d
final-project
week-01
week-02
.gitkeep
bio-p2.jpg
index.html
week-03
week-04
week-05
week-06
week-07
week-08
week-09
week-10
week-11
week-12
week-13
.gitignore
README.md
index.html
Breadcrumbs
DMD-3470
/
week-02
/
index.html
Blame
Blame
Latest commit
History
History
142 lines (138 loc) · 3.81 KB
Breadcrumbs
DMD-3470
/
week-02
/
index.html
Top
File metadata and controls
Code
Blame
142 lines (138 loc) · 3.81 KB
Raw
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About Me</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; } header, footer { background: #333; color: white; text-align: center; padding: 1rem; width: 100%; } main { display: flex; flex-direction: column; max-width: 900px; width: 100%; padding: 20px; } .content { display: flex; flex-direction: column; gap: 20px; } .profile { display: flex; flex-direction: column; align-items: center; text-align: center; } .profile img { width: 150px; height: 150px; border-radius: 50%; } .lists { display: flex; flex-direction: column; gap: 20px; } ul { list-style: none; padding: 0; } ul li::before { content: "\2022"; /* Bullet point */ color: #333; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; } nav ul { display: flex; gap: 15px; justify-content: center; padding: 0; } nav ul li { list-style: none; } nav a { color: white; text-decoration: none; } .lists h2 { color: #9370DB; } @media (min-width: 768px) { .content { display: flex; flex-direction: column; } } @media (max-width: 767px) { .content { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: space-between; } .profile, .lists { flex: 1; min-width: 45%; } } </style> </head> <body> <header> <h1>About Me</h1> <nav> <ul> <li><a href="#bio">Bio</a></li> <li><a href="#interests">Interests</a></li> <li><a href="#websites">Websites</a></li> </ul> </nav> </header> <main> <div class="content"> <section class="profile" id="bio"> <img src="bio-p2.jpg" alt="Profile Photo"> <p>Hey I'm Lorenzo Quintana. I enjoy taking cool photos and telling stories. In my free time, I love to box, play soccer, watch anime, or make some art.</p> </section> <section class="lists"> <h2 id="interests">My Interests</h2> <ul> <li>Photography</li> <li>Drawing</li> <li>Boxing</li> <li>Soccer</li> </ul> <h2 id="websites">Favorite Websites</h2> <ul> <li><a href="https://www.youtube.com" target="_blank">YouTube</a></li> <li><a href="https://www.pinterest.com" target="_blank">Pinterest</a></li> <li><a href="https://www.instagram.com" target="_blank">Instagram</a></li> </ul> </section> </div> </main> <footer> <p>© 2025 Lorenzo Quintana</p> </footer> </body> </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
You can’t perform that action at this time.