-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.html
More file actions
111 lines (107 loc) · 2.5 KB
/
Copy pathintroduction.html
File metadata and controls
111 lines (107 loc) · 2.5 KB
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
<!-- Madison Pegram -->
<!-- COMP 322: Internet Systems -->
<!-- Intro page with skills/abilities and photos -->
<!-- 8/31/2025 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>INTRO</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #fff0f5, #ffe4f7);
color: #333;
text-align: center;
padding: 30px;
}
h1 {
color: magenta;
font-size: 2.5em;
margin-bottom: 20px;
text-shadow: 1px 1px 3px #ffb6c1;
}
table {
border-collapse: collapse;
margin: 0 auto 30px auto;
width: 90%;
max-width: 1000px;
}
th, td {
border: 1px solid magenta;
padding: 12px;
text-align: center;
}
th {
background-color: pink;
color: #4a004a;
}
img {
border-radius: 10px;
margin: 15px;
}
a {
display: inline-block;
margin-bottom: 20px;
padding: 8px 16px;
text-decoration: none;
background-color: magenta;
color: white;
font-weight: bold;
border-radius: 5px;
}
</style>
</head>
<body>
<!-- Link back to home using a route the server handles -->
<a href="/index">Home</a>
<h1>My Intro!</h1>
<table>
<tr>
<th>Skills</th>
<th>Abilities</th>
<th>Education</th>
<th>Training</th>
</tr>
<tr>
<td>Java</td>
<td>Critical Thinking</td>
<td>High School: Dudley High School</td>
<td>CodeHouse React Workshop</td>
</tr>
<tr>
<td>Python</td>
<td>Manage Databases</td>
<td>College: NCAT</td>
<td>Teacher Assistant for COMP 163</td>
</tr>
<tr>
<td>MySQL</td>
<td>Creating Web Pages</td>
<td>Project: Becoming Beloved (React)</td>
<td>NodeJS</td>
</tr>
<tr>
<td>React</td>
<td>Debugging Code</td>
<td>Google: Cybersecurity Certificate</td>
<td>Intermediate in React</td>
</tr>
<tr>
<td>Leadership</td>
<td>Adaptability</td>
<td>—</td>
<td>—</td>
</tr>
<tr>
<td>Time Management</td>
<td>Communicating Effectively</td>
<td>—</td>
<td>—</td>
</tr>
</table>
<!-- Use RELATIVE paths into img/ -->
<img src="img/IMG_1079.jpg" width="250" height="250" alt="Photo 1" />
<img src="img/IMG_4122.jpg" width="250" height="250" alt="Photo 2" />
</body>
</html>