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
26 changes: 26 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/learn-html.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Enter your Full Name in the space below
## Haojie Huang
6 changes: 3 additions & 3 deletions quizzes/colors.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
</head>
<body>
<p style="background-color:Tomato;">Hello World</p>
<h1 style="background-color:rgb(255, 99, 71);">Hello World</h1>
<h1 style="background-color:#ff6347;">Hello World</h1>
<h1 style="background-color:hsl(9, 100%, 64%);">...</h1>
<h1 style="background-color:rgb(1, 255, 1);">Hello World</h1>
<h1 style="background-color:#086347;">Hello World</h1>
<h1 style="background-color:hsl(9, 80%, 64%);">...</h1>
<h1 style="background-color:rgba(255, 99, 71, 0.5);">Hello World</h1>

</body>
Expand Down
6 changes: 6 additions & 0 deletions quizzes/format.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
</head>
<body>
<h3> Binary Math </h3>
<pre>
If <i>N</i> is a K-bit binary string
then the decimal representation of N can be derived as follows:
<ins>2<sup>0</sup>+2<sup>1</sup>+...+2<sup>k-1</sup></ins>


</pre>
</body>
</html>
2 changes: 1 addition & 1 deletion quizzes/headings.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title> Headings </title>
</head>
<body>
<h1>Northeastern University Link</h1>
<h1 style="font-size:10px;">Northeastern University Link</h1>
<h2>Northeastern University Link</h2>
<h3>Northeastern University Link</h3>
<h4>Northeastern University Link</h4>
Expand Down
4 changes: 2 additions & 2 deletions quizzes/links.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<body>

<h2 id="C10">List of links</h2>
<a href="../basic.html">
<a href="../basic.html" target="_blank">
<img src="../images/empty-classroom.jpeg" alt="Image not found">
</a>
<pre>
Expand All @@ -29,7 +29,7 @@ <h2 id="C10">List of links</h2>
18
19
20
<a href="C10"> Go to Top </a>
<a href="#C10"> Go to Top </a>
</pre>


Expand Down
9 changes: 8 additions & 1 deletion quizzes/paragraph.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
<title> Paragraph Quiz </title>
</head>
<body>
React is a JavaScript library for rendering user interfaces (UIs). UIs are built from reusable small units such as button, text, etc. and combined to form larger units. In this worksheet and the subsequent ones, we will learn about React components and how they can be used to build UI screens effectively.
<h1>About React</h1>
<hr>
<pre>
React is a JavaScript library for rendering user interfaces (UIs).
UIs are built from reusable small units such as button, text, etc. and combined to form larger units.
In this worksheet and the subsequent ones, we will learn about React components and how they can be used to build UI screens effectively.
</pre>
<hr>
</body>
</html>