-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (64 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
81 lines (64 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Andre's Website</title>
</head>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
p{
width: 500px;
text-align: center;
margin: 0 auto;
}
ul {
width: 500px; /* fixed width of the block */
margin: 0 auto; /* centers the block horizontally */
text-align: left;
list-style-position: inside; /* bullets inside the content box */
padding-left: 0;
}
</style>
<body>
<h1> Andre Harris - Homework 4 </h1>
<a href="form.html">Form</a>
<h1> Andre Harris - Homework 3 </h1>
<a href="calculator.html">Calculator</a>
<h1> Andre Harris - Homework 2 </h1>
<a href="little_prince.html">The Little Prince </a>
<!--
Name: Andre Harris
Date: August 26, 2025
Class: COMP322, Section: 001
Description: This is my introduction webpage. A simple webpage to learn the fundamentals of HTML.
-->
<h1> Andre Harris - Homework 1</h1>
<!--
I used h2 tags for the heading and paragraph tags for the text for uniformity on my webpage.
-->
<h2>Bio</h2>
<p>
My name is Andre Harris. I am a Junior at North Carolina A&T State University. I am originally from Manassas Park,
Virginia. I chose A&T because I wanted to go to an HBCU and NCAT has the best Computer Science program. In Computer
Science, I want to focus on Software Development, Cybersecurity and Artificial Intelligence. Outside of coding,
I lead Bible Studies on NCAT's campus. I enjoy teaching people about the Word of God and the love of Jesus.
</p>
<h2>Me</h2>
<img src="img/img1.jpg" height="375" width="300"/></body>
<p> I had the opportunity to drive a Corvette this summer! </p>
<!--
I used an unordered list my current classes.
-->
<h2>My Classes</h2>
<ul>
<li>COMP322: Internet Systems</li>
<li>COMP360: Programming Languages</li>
<li>ECEN375: Computer Architecture and Organization</li>
<li>MATH224: Introduction to Probability & Statistics</li>
</ul>
<br>
<a href = introduction.html> Click here for an introduction on Andre Harris</a>
</body> </html>