-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontPage.html
82 lines (55 loc) · 2.17 KB
/
frontPage.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<!--Title of the page -->
<title>John's Portfolio Website</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body class = "body">
<!--Answer for number two's welcome message -->
<header>
<h2>Welcome to my portfolio page!</h2>
</header>
<hr />
<!--Answer for number three-->
<p> <strong>Education: </strong> North Carolina State University, Raleigh, NC | Bachelor of Science in Computer Science, Anticipated Graduation Date: June 2028
</p>
<br />
<!--Another Paragraph -->
<p style = "font-family: Nunito; font-size: 12px;color:#ffffff; text-align: left;"></p>Could write some stuff here this is a test to see how the colors work</p>
<hr />
<br />
<!--Answer for number four -->
<a href="https://github.com/JohnC888">
<img src="github-mark-white.png" alt="GitHub Logo" width="100" height="100">
</a>
<br />
<!--List Format
<h4>Classes that would prepare you to produce music at NC State.</h4>
<ul>
<li>MUS 120 Introduction to Music Theory</li>
<li>MUS 106 Beginning Piano</li>
<li>MUS 107 Keyboard Skills I</li>
<li>MUS 112 Men's Choir</li>
</ul>
<br />
-->
<!-- Answer for number 6 -->
<table class="table-borders">
<tr>
<th>Project</th><th>Description</th>
</tr>
<tr>
<!-- https://getinvolved.ncsu.edu/organization/ballroom Used this webpage for this-->
<td>2023 Robotics</td>
<td><a href="https://github.com/team7890/2023_frc_V2/tree/master/src/main/java/frc/robot" target="_blank">Code I wrote for robotics in 2023.</a></td>
</tr>
<tr>
<!-- https://getinvolved.ncsu.edu/organization/ampclub Used this webpage for this-->
<td>Filler</td>
<td><a href="error" target="_blank">Filler slot.</a></td>
</tr>
</table>
</body>
</html>