This commit is contained in:
Joshua Killen 2020-04-17 08:24:14 +01:00
parent b59f33fd0a
commit fb192541ea
4 changed files with 34 additions and 44 deletions

View File

@ -31,6 +31,12 @@ summary {
font-size: 2vw font-size: 2vw
} }
abbr {
border-bottom: none !important;
cursor: inherit !important;
text-decoration: none !important;
}
.footer { .footer {
background-color: #0d0d0d; background-color: #0d0d0d;
padding-top: 25px; padding-top: 25px;

View File

@ -22,15 +22,15 @@
<img src="../../sitewide_assets/logo.gif" alt="JKLearns"> <img src="../../sitewide_assets/logo.gif" alt="JKLearns">
<img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59"> <img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59">
<div class="navBar" id="navBar"> <nav class="navBar" id="navBar">
<a href="../../home/home.html">Home</a> <a href="../../home/home.html">Home</a>
<a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a> <a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<div class="dropDown"> <div class="dropDown">
<button class="networkDropBtn" onclick="networkDrop()">Networking</button> <button class="networkDropBtn" onclick="networkDrop()">Networking</button>
<div class="networkDrop-content" id="networkDrop"> <div class="networkDrop-content" id="networkDrop">
<a href="../../networking/networking.html">Fundamentals</a> <a class="active" href="../../networking/networking.html">Fundamentals</a>
<a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a> <a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a>
<a class="active" href="../../osi_model/osi_model.html">OSI Model</a> <a href="../../osi_model/osi_model.html">OSI Model</a>
</div> </div>
</div> </div>
<div class="dropDown"> <div class="dropDown">
@ -43,7 +43,7 @@
</div> </div>
<a href="../../contact/contact.html">Contact</a> <a href="../../contact/contact.html">Contact</a>
<a href="../../about/about.html">About</a> <a href="../../about/about.html">About</a>
</div> </nav>
</header> </header>
<h1>OSI Model</h1> <h1>OSI Model</h1>

View File

@ -18,46 +18,38 @@
<script src="html_assets/html.js"></script> <script src="html_assets/html.js"></script>
<title>Web Design-HTML: Z14IT-Internet Fundamentals</title> <title>Web Design-CSS: Z14IT-Internet Fundamentals</title>
</head> </head>
<body> <body>
<header> <header>
<img src="../../sitewide_assets/logo.gif" alt="JKLearns"> <img src="../../sitewide_assets/logo.gif" alt="JKLearns">
<img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59" align="right"> <img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59">
<div class="navBar" id="navBar"> <nav class="navBar" id="navBar">
<a href="../../home/home.html">Home</a> <a href="../../home/home.html">Home</a>
<a href="">Evolution of The Internet</a> <a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<div class="dropDown"> <div class="dropDown">
<button class="networkDropBtn" onclick="networkDrop()">Networking</button> <button class="networkDropBtn" onclick="networkDrop()">Networking</button>
<div class="networkDrop-content" id="networkDrop"> <div class="networkDrop-content" id="networkDrop">
<a href="../../networking/osi_model/osi_model.html">OSI Model</a> <a class="active" href="../../networking/networking.html">Fundamentals</a>
<a href="../../networking/routing/routing.html">Routing</a> <a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a>
<a href="../../networking/internet_protocols/ip.html">Internet Protocols</a> <a href="../../osi_model/osi_model.html">OSI Model</a>
<a href="../../networking/ipv4/ipv4.html">IPv4</a>
<a href="../../networking/ipv6/ipv6.html">IPv6</a>
<a href="../../networking/tcp/tcp.html">TCP</a>
<a href="../../networking/udp/udp.html">UDP</a>
<a href="../../networking/internet_name_resolution/inr.html">Internet Name Resolution</a>
<a href="../../networking/pop/pop.html">PoP</a>
<a href="../../networking/dns/dns.html">DNS</a>
<a href="../../networking/dchp/dchp.html">DCHP</a>
</div> </div>
</div> </div>
<div class="dropDown"> <div class="dropDown">
<button class="webDropBtn" onclick="webDrop()">Web Design</button> <button class="webDropBtn" onclick="webDrop()">Web Design</button>
<div class="webDrop-content" id="webDrop"> <div class="webDrop-content" id="webDrop">
<a class="active" href="../html.html">HTML</a> <a href="../../website_design/html/html.html">HTML</a>
<a href="../../css/css.html">CSS</a> <a href="../../website_design/css/css.html">CSS</a>
<a href="../../javascript/javascript.html">JavaScript</a> <a href="../../website_design/javascript/javascript.html">JavaScript</a>
</div> </div>
</div> </div>
<a href="../../contact/contact.html">Contact</a> <a href="../../contact/contact.html">Contact</a>
<a href="../../about/about.html">About</a> <a href="../../about/about.html">About</a>
</div> </nav>
</header> </header>
<h1><abbr title="HyperText Markup Language">HTML</abbr> Quick Reference Guide</h1> <h1><abbr title="Cascading Style Sheets">CSS</abbr> Quick Reference Guide</h1>
<input type="text" id="searchInput" onkeyup="search()" placeholder="Search for tag..."> <input type="text" id="searchInput" onkeyup="search()" placeholder="Search for tag...">

View File

@ -23,38 +23,30 @@
<body> <body>
<header> <header>
<img src="../../sitewide_assets/logo.gif" alt="JKLearns"> <img src="../../sitewide_assets/logo.gif" alt="JKLearns">
<img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59" align="right"> <img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59">
<div class="navBar" id="navBar"> <nav class="navBar" id="navBar">
<a href="../../home/home.html">Home</a> <a href="../../home/home.html">Home</a>
<a href="">Evolution of The Internet</a> <a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<div class="dropDown"> <div class="dropDown">
<button class="networkDropBtn" onclick="networkDrop()">Networking</button> <button class="networkDropBtn" onclick="networkDrop()">Networking</button>
<div class="networkDrop-content" id="networkDrop"> <div class="networkDrop-content" id="networkDrop">
<a href="../../networking/osi_model/osi_model.html">OSI Model</a> <a class="active" href="../../networking/networking.html">Fundamentals</a>
<a href="../../networking/routing/routing.html">Routing</a> <a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a>
<a href="../../networking/internet_protocols/ip.html">Internet Protocols</a> <a href="../../osi_model/osi_model.html">OSI Model</a>
<a href="../../networking/ipv4/ipv4.html">IPv4</a>
<a href="../../networking/ipv6/ipv6.html">IPv6</a>
<a href="../../networking/tcp/tcp.html">TCP</a>
<a href="../../networking/udp/udp.html">UDP</a>
<a href="../../networking/internet_name_resolution/inr.html">Internet Name Resolution</a>
<a href="../../networking/pop/pop.html">PoP</a>
<a href="../../networking/dns/dns.html">DNS</a>
<a href="../../networking/dchp/dchp.html">DCHP</a>
</div> </div>
</div> </div>
<div class="dropDown"> <div class="dropDown">
<button class="webDropBtn" onclick="webDrop()">Web Design</button> <button class="webDropBtn" onclick="webDrop()">Web Design</button>
<div class="webDrop-content" id="webDrop"> <div class="webDrop-content" id="webDrop">
<a class="active" href="../html.html">HTML</a> <a href="../../website_design/html/html.html">HTML</a>
<a href="../../css/css.html">CSS</a> <a href="../../website_design/css/css.html">CSS</a>
<a href="../../javascript/javascript.html">JavaScript</a> <a href="../../website_design/javascript/javascript.html">JavaScript</a>
</div> </div>
</div> </div>
<a href="../../contact/contact.html">Contact</a> <a href="../../contact/contact.html">Contact</a>
<a href="../../about/about.html">About</a> <a href="../../about/about.html">About</a>
</div> </nav>
</header> </header>
<h1><abbr title="HyperText Markup Language">HTML</abbr> Quick Reference Guide</h1> <h1><abbr title="HyperText Markup Language">HTML</abbr> Quick Reference Guide</h1>