Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions 110/assessment-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Why do you think it's important that HTML is an open standard controlled by a specification rather than being owned by one person or company?

I am not exactly sure what would change for sure, but what I do know is that there would definitely be limitations somewhere in the private-owned HTML compared to the public HTML. My biggest idea is that you would have to pay a small fee to use HTML, but for all I know that could be true already. So my speculation only really goes as far as limited access to the privately-owned HTML.

Describe the difference between an element and a tag. Use examples.

An element is the content that you see on a website. Whether it is a word, paragragh, link or anything that you see in website, it originally starts out as an element in a tag.
The way you see things inside of the website is because of tags. Tags and their names tell developers what inside the tag, the element, is to the website and what it will do. As an example, the <p> tag, or paragraph tag, is a tag that accepts text to create a paragraph. Whatever is between the start tag and the end tag is then printed out like its a paragraph.

In the lecture, I used two quotes from Yoda and Noam Chomsky to explain syntax and semantics. Explain these quotes and how they relate to the HTML you write.

The Yoda quote had the semantics of language down, but its syntax was wrong, while Chomsky's quote had the syntax down, but its semantics were all over the place. Semantics tells us what it means while syntax tells us how it is structured. HTML follows the same structure because of how errors show themselves. You could have the HTML syntax down pat when you write code, but not everyone could read it and be able to read it like you do, which is a failure of semantics. Or you could have very readable code, but no-one knows how you got there, which is bad syntax. The HTML that we write will have to have a balance of syntax and semantics, written by the rules that we have set up, while also being readable
for everyone reading it.
1 change: 1 addition & 0 deletions 110/resume/Myhugepicture.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 101 additions & 0 deletions 110/resume/betterresume.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html>
<head>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>myresume</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<h3>Quick Links</h3>

<ul>
<li><a href="#info">info</a></li>
<li><a href="#goal">goals</a></li>
<li><a href="#work">work</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#education">education</a></li>
<li><a href="#awards">awards</a></li>
</ul>
</nav>

<section>
<section id ="info">

<h2>Information</h2>

<address>

<em>Name</em> - Hari Allen <br>
<em>Phone Number</em> - 717-954-4023<br>
<em>Email Address</em> - <a href = 'https://mail.google.com/mail/u/1/?tab=wm&ogbl#inbox'>hariallen20@gmail.com</a>

</address>

</section>

<section>
<section id ="goal">

<h2>Objective</h2>

<p>
To be as great a Software Engineer as I can be!
</p>

</section>

<section>
<section id ="work">
<h2>Work Experience</h2>
<p>
<em>When</em> - Tech Dept. Summer Help, 2020 - 2020<br><em>Where</em> - Lebanon High School , Lebanon, PA<br> I have configured around 1500+ devices for the school to use for its staff and students, along with recording their individual number tag and serial number.
</p>
<p>
A picture of my handiwork
<img src="IMG_20200813_112432.jpg" alt="">
</p>
</section>




<section>
<section id ="skills">
<h2>Skills</h2>
<p>
<ul>
<li>Trustworthy</li>
<li>Responsible</li>
<li>Hard-Working</li>
<li>Quick Learner</li>
<li>Dilligent</li>
</ul>
</p>
</section>

<section>
<section id = "education">
<h2>Education History</h2>
<p>
Graduated from Lebanon High School<br>
(Currently) Thaddeus Stevens College Associate's Degree
</p>
</section>


<section>
<section id ="awards">
<h2>Awards</h2>
<p>
I have a poem printed in an American Youth Poet book.
</p>
</section>




</body>
</html>
58 changes: 58 additions & 0 deletions 110/resume/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>myresume</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>

<p>
<strong><h2>Information</h2></strong><em>Name</em> - Hari Allen <br><em>Address</em> - 825 Walnut St Lebanon, PA 17042 <br><em>Phone Number</em> - 717-954-4023 <br><em>Email Address</em> - <a href = 'https://mail.google.com/mail/u/1/?tab=wm&ogbl#inbox'>hariallen20@gmail.com</a>
</p>


<p>
<strong><h2>Objective</h2></strong>
To be as a great Software Engineer as I can be!
</p>

<p>
<strong><h2>Work Experience</h2></strong><em>When</em> - Tech Dept. Summer Help, 2020 - 2020<br><em>Where</em> - Lebanon High School , Lebanon, PA<br> I have configured around 1500+ devices for the school to use for its staff and students, along with recording their individual number tag and serial number.
</p>



<p>
<strong><h2>Skills</h2></strong>
<ul>
<li>Trustworthy</li>
<li>Responsible</li>
<li>Hard-Working</li>
<li>Quick Learner</li>
<li>Dilligent</li>
</ul>
</p>

<p>
<strong><h2>Education History</h2></strong>
Graduated from Lebanon High School<br>
(Currently) Thaddeus Stevens College Associate's Degree

</p>


<p>
<strong><h2>Awards</h2></strong>

</p>




</body>
</html>


Couldn't finish because of family issues.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ A collection of my notes and assignments for courses in the [CSET program at Tha
_Feel free to change README files and add any notes or files you want along with your submitted assignments._

- [105: Intro To Web Applications](/105)
- 110: Web Development I
- 115: Technical Requirements & Data Structures
- 120: Software Project I
- [110: Web Development I](/110)
- [115: Technical Requirements & Data Structures](/115)
- [120: Software Project I](/120)