diff options
author | RossTheRoss <mstrapp@protonmail.com> | 2021-01-29 08:18:26 -0600 |
---|---|---|
committer | RossTheRoss <mstrapp@protonmail.com> | 2021-01-29 08:18:26 -0600 |
commit | ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0 (patch) | |
tree | 2488afc7dee630193aae118f7e6836670aae8666 /csci4131/lec | |
parent | Start CSCI 4131 (diff) | |
download | homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar.gz homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar.bz2 homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar.lz homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar.xz homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.tar.zst homework-ff3a20b7b5270ebf1cb659ef9ad86ebc113904b0.zip |
re
Diffstat (limited to '')
-rw-r--r-- | csci4131/lec/Lec3Ex2.html | 32 | ||||
-rw-r--r-- | csci4131/lec/Lec3Ex3.html | 14 |
2 files changed, 46 insertions, 0 deletions
diff --git a/csci4131/lec/Lec3Ex2.html b/csci4131/lec/Lec3Ex2.html new file mode 100644 index 0000000..8903571 --- /dev/null +++ b/csci4131/lec/Lec3Ex2.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>There is no title</title> + <style> + table, th, td { + border: 1px solid black; + border-collapse: collapse; + } + </style> + </head> + <body> + <h2>My nonexistent list of Favorite Movies</h2> + <table> + <tr> + <th>Favorite Movie</th> + <th>Favorite Actor/Actress in Said Movie</th> + </tr> + <tr> + <!--I don't have a favorite so I'm leaving these blank.--> + <td>Name of Favorite Movie</td> + <td>Name of Favorite Actor/Actress</td> + </tr> + <tr> + <!--I don't have a favorite so I'm leaving these blank.--> + <td>Name of Favorite Movie 2</td> + <td>Name of Favorite Actor/Actress 2</td> + </tr> + </table> + </body> +</html>
\ No newline at end of file diff --git a/csci4131/lec/Lec3Ex3.html b/csci4131/lec/Lec3Ex3.html new file mode 100644 index 0000000..1f40c72 --- /dev/null +++ b/csci4131/lec/Lec3Ex3.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title>There is no form</title> + </head> + <body> + <form method="post"> + <input name="URL" Type="url">URL</input><br> + <input name="email" Type="email">Email</input><br> + <input type="submit" value="Submit"> + <input type="Clear" value="Clear"> + </form> + </body>
\ No newline at end of file |