Updates to networking

This commit is contained in:
Joshua Killen 2020-04-17 07:55:07 +01:00
parent ecf55ef83d
commit 50f2cb9e64
3 changed files with 32 additions and 20 deletions

View File

View File

@ -25,8 +25,14 @@
<div class="navBar" id="navBar">
<a href="../../home/home.html">Home</a>
<a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<a class="active" href="../../networking/networking.html">Networking</a>
<a class="active" href="../../osi_model/osi_model.html">OSI Model</a>
<div class="dropDown">
<button class="networkDropBtn" onclick="networkDrop()">Networking</button>
<div class="networkDrop-content" id="networkDrop">
<a href="../../networking/networking.html">Fundamentals</a>
<a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a>
<a class="active" href="../../osi_model/osi_model.html">OSI Model</a>
</div>
</div>
<div class="dropDown">
<button class="webDropBtn" onclick="webDrop()">Web Design</button>
<div class="webDrop-content" id="webDrop">
@ -40,7 +46,7 @@
</div>
</header>
<h1>Networking Fundamentals</h1>
<h1>Internet Protocols</h1>
<article>
<details open>

View File

@ -10,33 +10,39 @@
<base target ="_self">
<link rel="stylesheet" href="../../../main.css" type="text/css">
<link rel="stylesheet" href="../../../sitewide_assets/navbar/navbar.css" type="text/css">
<link rel="stylesheet" href="../../main.css" type="text/css">
<link rel="stylesheet" href="../../sitewide_assets/navbar/navbar.css" type="text/css">
<link rel="stylesheet" href="osi_model_assets/osi_model.css" type="text/css">
<script src="../../../sitewide_assets/navbar/navbar.js"></script>
<script src="../../sitewide_assets/navbar/navbar.js"></script>
<title>Networking-OSI Model: Z14IT-Internet Fundamentals</title>
</head>
<body>
<header>
<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 src="../../sitewide_assets/logo.gif" alt="JKLearns">
<img class="uniLogo" src="../../sitewide_assets/cuc_logo.png" alt="CU Coventry" width="259" height="59">
<div class="navBar" id="navBar">
<a href="../../../home/home.html">Home</a>
<a href="../../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<a class="active" href="../../../networking/networking.html">Networking</a>
<a class="active" href="../../../osi_model/osi_model.html">OSI Model</a>
<a href="../../home/home.html">Home</a>
<a href="../../evolution_of_the_internet/eoti.html">Evolution of The Internet</a>
<div class="dropDown">
<button class="networkDropBtn" onclick="networkDrop()">Networking</button>
<div class="networkDrop-content" id="networkDrop">
<a href="../../networking/networking.html">Fundamentals</a>
<a href="../../internet_protocol/internet_protocol.html">Internet Protocol</a>
<a class="active" href="../../osi_model/osi_model.html">OSI Model</a>
</div>
</div>
<div class="dropDown">
<button class="webDropBtn" onclick="webDrop()">Web Design</button>
<div class="webDrop-content" id="webDrop">
<a href="../../../website_design/html/html.html">HTML</a>
<a href="../../../website_design/css/css.html">CSS</a>
<a href="../../../website_design/javascript/javascript.html">JavaScript</a>
<a href="../../website_design/html/html.html">HTML</a>
<a href="../../website_design/css/css.html">CSS</a>
<a href="../../website_design/javascript/javascript.html">JavaScript</a>
</div>
</div>
<a href="../../../contact/contact.html">Contact</a>
<a href="../../../about/about.html">About</a>
<a href="../../contact/contact.html">Contact</a>
<a href="../../about/about.html">About</a>
</div>
</header>
@ -71,9 +77,9 @@
</details>
<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>
<a class="contact" href="../../../../contact/contact.html">Contact Us</a><br>
<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>
<a class="contact" href="../../../contact/contact.html">Contact Us</a><br>
<a class="sitemap" href="">Sitemap</a>
</div>
</footer>