Skip to content

Commit

Permalink
Update function to handle edge cases
Browse files Browse the repository at this point in the history
  • Loading branch information
devhrvx committed Apr 4, 2024
1 parent 59d2232 commit 69a5a36
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
32 changes: 32 additions & 0 deletions reference.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
body {
color: white;
background-color: black;
font-family: 'Courier New', Courier, monospace;
}
table {
width: 95%;
height: fit-content;
margin: 30px auto;
border: solid white 3px;
}
tr, th, td {
border: solid white 3px;

}
#content {
color: white;
font-size: 20px;
font-weight: bolder;
text-align: center;
}
#head {
text-align: center;
color: white;
font-weight: bolder;
font-size: 30px;
}
#head1, #head2 {
color: white;
font-weight: bolder;
font-size: 15px;
}
36 changes: 36 additions & 0 deletions reference.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reference.css">
<link rel="shortcut icon" type="x-icon" href="images/Untitled design (2).png">
<title>References - ealsweb</title>
</head>
<body>
<table>
<tr>
<th colspan="3" id="head">References</th>
</tr>
<tr>
<th colspan="3" id="content">Content</th>
</tr>
<tr>
<th id="head1" colspan="1">Content</th>
<th id="head2" colspan="2">Link/Source</th>
</tr>
<tr>
<td>Creation of the Universe</td>
<td><ul>
<li>https://www.amnh.org/exhibitions/permanent/the-universe/the-universe/formation-and-evolution-of-the-universe#:~:text=Our%20universe%20began%20with%20an,stars%20and%20the%20first%20galaxies.</li>
</ul></td>
</tr>
<tr>
<td>Solar System Creation</td>
<td><ul>
<li>https://science.nasa.gov/solar-system/facts/</li>
</ul></td>
</tr>
</table>
</body>
</html>

0 comments on commit 69a5a36

Please sign in to comment.