Skip to content

Commit

Permalink
checked against rubrics
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikaila committed Sep 25, 2024
1 parent 94ace5d commit e90b5ce
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 9 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .idea/.gitignore

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

9 changes: 9 additions & 0 deletions .idea/kaikaila.github.io.iml

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

6 changes: 6 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.

Binary file modified WebsiteAssignmentFiles/.DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
>
<div class="container">
<!--This code defines the "My Webpage" link in the top left corner of the navigation pane-->
<a class="navbar-brand" href="./index.html">My Webpage</a>
<a class="navbar-brand" href="./index.html">Home</a>
<!--This code defines the "List" link in the top right corner of the navigation pane-->
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1">
Expand All @@ -37,7 +37,7 @@ <h1 class="masthead-heading text-uppercase mb-0">Yunkai Li</h1>
</div>
<!--This code creates the subheading underneath the line dividers-->
<p class="masthead-subheading font-weight-light mb-0">
School of Information Student
Software Engineer
</p>

<!-- Add a paragraph with a brief biography -->
Expand Down
2 changes: 1 addition & 1 deletion list.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
>
<div class="container">
<!--This code defines the "My Webpage" link in the top right corner of the navigation pane-->
<a class="navbar-brand" href="./index.html">My Webpage</a>
<a class="navbar-brand" href="./index.html">Home</a>
<!--This code defines the "List" link in the top left corner of the navigation pane-->
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1">
Expand Down
2 changes: 1 addition & 1 deletion list_data.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Cities I've been to": [
"cities": [
{
"City": "Haifa",
"Country": "Israel",
Expand Down
5 changes: 3 additions & 2 deletions restaurants.dtd → restaurant.dtd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!ELEMENT restaurants (restaurant+)>
<!ELEMENT restaurant (id,name, cuisine, city, open,close)>
<!ELEMENT root (restaurant+)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT restaurant (id, name, cuisine, city, open, close)>
<!ELEMENT id (#PCDATA)>
<!ELEMENT cuisine (#PCDATA)>
<!ELEMENT city (#PCDATA)>
Expand Down
6 changes: 3 additions & 3 deletions restaurant.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE restaurants SYSTEM "restaurants.dtd">
<restaurants>
<!DOCTYPE root SYSTEM "restaurant.dtd">
<root>
<restaurant>
<id>0</id>
<name>Kabana</name>
Expand All @@ -24,4 +24,4 @@
<open>9am</open>
<close>3pm</close>
</restaurant>
</restaurants>
</root>

0 comments on commit e90b5ce

Please sign in to comment.