2020-04-17 07:18:27 +00:00
<!DOCTYPE html>
< html >
< head >
< meta name = "keywords" content = "Internet Fundamentals, Networking, Web Design, University, Coventry, CUC, 2020, CW2" >
< meta name = "description" content = "An accessible, online resource for learning the fundamentals of the internet, web design, and networking. This was created for coursework for unit Z14IT 2020 by Joshua Killen Student ID: 9449871" >
< meta name = "author" content = "Joshua Killen" >
< meta http-equiv = "refresh" content = "60" >
< meta name = "viewport" content = "width=device-width, initial=scale=1.0" >
< meta charset = "utf-8" >
< base target = "_self" >
< link rel = "stylesheet" href = "../../main.css" type = "text/css" >
< link rel = "stylesheet" href = "../../sitewide_assets/navbar/navbar.css" type = "text/css" >
2020-04-17 12:09:35 +00:00
< link rel = "stylesheet" href = "../../sitewide_assets/filter_search/filter_search.css" type = "text/css" >
2020-04-17 07:18:27 +00:00
< script type = "text/javascript" src = "../../sitewide_assets/navbar/navbar.js" > < / script >
2020-04-17 12:09:35 +00:00
< script src = "../../sitewide_assets/filter_search/filter_search.js" > < / script >
2020-04-17 07:18:27 +00:00
< title > Web Design-HTML: Z14IT-Internet Fundamentals< / title >
< / head >
< body >
< header >
< img src = "../../sitewide_assets/logo.gif" alt = "JKLearns" >
2020-04-17 07:24:14 +00:00
< img class = "uniLogo" src = "../../sitewide_assets/cuc_logo.png" alt = "CU Coventry" width = "259" height = "59" >
< nav class = "navBar" id = "navBar" >
2020-04-17 07:30:14 +00:00
< a href = "../../home.html" > Home< / a >
2020-04-17 07:24:14 +00:00
< a href = "../../evolution_of_the_internet/eoti.html" > Evolution of The Internet< / a >
2020-04-17 07:18:27 +00:00
< div class = "dropDown" >
< button class = "networkDropBtn" onclick = "networkDrop()" > Networking< / button >
< div class = "networkDrop-content" id = "networkDrop" >
2020-04-17 07:27:00 +00:00
< a href = "../../networking/networking.html" > Fundamentals< / a >
2020-04-17 07:24:14 +00:00
< a href = "../../internet_protocol/internet_protocol.html" > Internet Protocol< / a >
< a href = "../../osi_model/osi_model.html" > OSI Model< / a >
2020-04-17 07:18:27 +00:00
< / div >
< / div >
< div class = "dropDown" >
< button class = "webDropBtn" onclick = "webDrop()" > Web Design< / button >
< div class = "webDrop-content" id = "webDrop" >
2020-04-17 07:27:00 +00:00
< a class = "active" href = "../../website_design/html/html.html" > HTML< / a >
2020-04-17 07:24:14 +00:00
< a href = "../../website_design/css/css.html" > CSS< / a >
< a href = "../../website_design/javascript/javascript.html" > JavaScript< / a >
2020-04-17 07:18:27 +00:00
< / div >
< / div >
< a href = "../../about/about.html" > About< / a >
2020-04-17 07:24:14 +00:00
< / nav >
2020-04-17 07:18:27 +00:00
< / header >
2020-04-17 10:57:32 +00:00
< h1 > < abbr class = "title" title = "HyperText Markup Language" > HTML< / abbr > Quick Reference Guide< / h1 >
2020-04-17 07:18:27 +00:00
< input type = "text" id = "searchInput" onkeyup = "search()" placeholder = "Search for tag..." >
< ul id = "referenceList" >
2020-04-17 17:11:07 +00:00
< li > < details class = "anchor" >
< summary class = "frameTitle" > wbr< / summary >
< p class = "frameContent" > Defines a possible line-break< / p >
2020-04-17 07:18:27 +00:00
< / details > < / li >
2020-04-17 17:11:07 +00:00
< li > < details class = "anchor" >
< summary class = "frameTitle" > var< / summary >
< p class = "frameContent" > Defines a variable< / p >
2020-04-17 07:18:27 +00:00
< / details > < / li >
2020-04-17 17:11:07 +00:00
< li > < details class = "anchor" >
< summary class = "frameTitle" > video< / summary >
< p class = "frameContent" > Defines a video or movie< / p >
2020-04-17 07:18:27 +00:00
< / details > < / li >
2020-04-17 17:11:07 +00:00
< li > < details class = "anchor" >
< summary class = "frameTitle" > ul< / summary >
< p class = "frameContent" > Defines an unordered list< / p >
< / details > < / li >
< li > < details class = "anchor" >
< summary class = "frameTitle" > !--...--< / summary >
< p class = "frameContent" > Defines a comment< / p >
< / details > < / li >
< li > < details class = "anchor" >
< summary class = "frameTitle" > !DOCTYPE< / summary >
< p class = "frameContent" > Defines the document type< / p >
< / details > < / li >
< li > < details class = "anchor" >
< summary class = "frameTitle" > a< / summary >
< p class = "frameContent" > Defines a hyperlink< / p >
< / details > < / li >
< li > < details class = "anchor" >
< summary class = "frameTitle" > abbr< / summary >
< p class = "frameContent" > Defines an abbreviation or an acronym< / p >
< summary class = "frameTitle" > address< / summary >
< p class = "frameContent" > Defines an unordered list< / p >
2020-04-17 07:18:27 +00:00
< / details > < / li >
< / ul >
< footer >
< div class = "footer" >
< a class = "about" href = "../../../about/about.html" > About the Website< / a > < br >
< a href = "../../sitewide_assets/bibliography.pdf" download = "KILLEN_Joshua_Bibliography" target = "_blank" > Bibliography< / a > < br >
2020-04-17 12:13:40 +00:00
< a class = "contact" href = "../../../about/about.html" > Contact Us< / a > < br >
2020-04-17 07:18:27 +00:00
< a class = "sitemap" href = "" > Sitemap< / a >
< / div >
< / footer >
< / body >
< / html >