diff options
Diffstat (limited to '')
-rw-r--r-- | csci4131/hw1/myContacts.html | 56 | ||||
-rw-r--r-- | csci4131/hw1/myWidgets.html | 25 |
2 files changed, 48 insertions, 33 deletions
diff --git a/csci4131/hw1/myContacts.html b/csci4131/hw1/myContacts.html index 8cbc3d4..866b999 100644 --- a/csci4131/hw1/myContacts.html +++ b/csci4131/hw1/myContacts.html @@ -6,7 +6,7 @@ <meta charset="UTF-8"> <style> .linkTable { - border: solid black; + border: 2px solid black; margin-left: 20px; } table, th, td { @@ -18,8 +18,8 @@ <body> <nav> - <a href="./myWidgets.html"; class="linkTable">myWidgets</a><br> - <a href="./myContacts.html"; class="linkTable">myContacts</a> + <a href="./myWidgets.html" class="linkTable">myWidgets</a><br> + <a href="./myContacts.html" class="linkTable">myContacts</a> </nav> <br><br> <h1>University Contacts</h1> @@ -32,39 +32,39 @@ <th>URL</th> </tr> <tr> - <td>Name</td> - <td>Location</td> - <td>Information</td> - <td>Email</td> - <td>URL</td> + <td>Joan Gabel</td> + <td>100 Church Street SE<br> 202 Morrill Hall<br> Minneapolis MN 55455</td> + <td>President of the University of Minnesota</td> + <td><a href="mailto:upres@umn.edu">upres@umn.edu</a></td> + <td><a href="https://president.umn.edu/">Home Page</a></td> </tr> <tr> - <td>Name</td> - <td>Location</td> - <td>Information</td> - <td>Email</td> - <td>URL</td> + <td>Mostafa Kaveh</td> + <td>117 Pleasant St SE<br> 105 Walter Library<br> Minneapolis MN 55455</td> + <td>Dean of the College of Science and Engineering</td> + <td><a href="mailto:mos@umn.edu">mos@umn.edu</a></td> + <td><a href="https://cse.umn.edu/college/office-dean">Home Page</a></td> </tr> <tr> - <td>Name</td> - <td>Location</td> - <td>Information</td> - <td>Email</td> - <td>URL</td> + <td>John Coleman</td> + <td>101 Pleasant Street SE<br> 215 Johnston Hall<br> Minneapolis MN 55455</td> + <td>Dean of the College of Liberal Arts</td> + <td><a href="mailto:coleman@umn.edu">coleman@umn.edu</a></td> + <td><a href="https://cla.umn.edu/units/dean">Home Page</a></td> </tr> <tr> - <td>Name</td> - <td>Location</td> - <td>Information</td> - <td>Email</td> - <td>URL</td> + <td>Valery Forbes</td> + <td>1475 Gortner Avenue<br> 123 Snyder Hall<br> St. Paul MN 55108</td> + <td>Dean of the College of Biological Sciences</td> + <td><a href="mailto:cbsdeans@umn.edu">cbsdeans@umn.edu</a></td> + <td><a href="https://cbs.umn.edu/about/college-leadership">Home Page</a></td> </tr> <tr> - <td>Name</td> - <td>Location</td> - <td>Information</td> - <td>Email</td> - <td>URL</td> + <td>Sri Zaheer</td> + <td>321 19th Avenue S<br> Suite 4-300 Carlson School of Management<br> Minneapolis MN 55455</td> + <td>Dean of the Carlson School of Management</td> + <td><a href="mailto:szaheer@umn.edu">szaheer@umn.edu</a></td> + <td><a href="https://carlsonschool.umn.edu/about-us/leadership-team">Home Page</a></td> </tr> </table> diff --git a/csci4131/hw1/myWidgets.html b/csci4131/hw1/myWidgets.html index 431e034..9d470e5 100644 --- a/csci4131/hw1/myWidgets.html +++ b/csci4131/hw1/myWidgets.html @@ -2,15 +2,30 @@ <html lang="en-US"> <head> <title>My Widgets</title> + <meta charset="UTF-8"> + <style> + .linkTable { + border: 2px solid black; + margin-left: 20px; + } + iframe { + border: 0px; + } + </style> </head> <body> - <nav> - <a href="./myWidgets.html">myWidgets</a> <a href="./myContacts.html">myContacts</a> - </nav> + <nav> + <a href="./myWidgets.html" class="linkTable">myWidgets <br></a> + <a href="./myContacts.html" class="linkTable">myContacts</a> + </nav> <ol> - <li><iframe width="500" height="350" src="https://www.youtube.com/embed/videoseries?list=PLkNVwyLvX_TFBLHCvApmvafqqQUHb6JwF" frameborder="0" allow="utoplay; encrypted-media" allowfullscreen></iframe></li> - <li><blockquote class="twitter-tweet"><p lang="en" dir="ltr">In retrospect, it was inevitable</p>— Elon Musk (@elonmusk) <a href="https://twitter.com/elonmusk/status/1355068728128516101?ref_src=twsrc%5Etfw">January 29, 2021</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script></li> + <li> <iframe width="500" height="350" src="https://www.youtube.com/embed/videoseries?list=PLkNVwyLvX_TFBLHCvApmvafqqQUHb6JwF" allow="utoplay; encrypted-media" allowfullscreen></iframe></li> + <li> <blockquote class="twitter-tweet"> + <p lang="en" dir="ltr">In retrospect, it was inevitable</p>— Elon Musk (@elonmusk) <a + href="https://twitter.com/elonmusk/status/1355068728128516101?ref_src=twsrc%5Etfw">January 29, 2021</a> + </blockquote> + <script async src="https://platform.twitter.com/widgets.js"></script></li> </ol> |