validated blog
This commit is contained in:
parent
f8f4f50b72
commit
428be700e3
|
|
@ -35,6 +35,10 @@
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blog > h2 {
|
||||||
|
padding-top: 50em;
|
||||||
|
}
|
||||||
|
|
||||||
.blog_post#first:focus-within {
|
.blog_post#first:focus-within {
|
||||||
transform: scale(180%, 180%) translate(20em, 6em);
|
transform: scale(180%, 180%) translate(20em, 6em);
|
||||||
transition: transform 1s;
|
transition: transform 1s;
|
||||||
|
|
|
||||||
|
|
@ -32,10 +32,10 @@
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
<a class="shownav" href="blog/blog.html#clicked"></a>
|
<a class="shownav" href="blog/blog.html#clicked"></a>
|
||||||
<section class="blog">
|
<div class="blog">
|
||||||
<section class="blog_post" id="first">
|
<section class="blog_post" id="first">
|
||||||
<button class="arrow"></button>
|
<button class="arrow"></button>
|
||||||
<h1 class="blog_title">Binary to Denary Conversions</h1>
|
<h2 class="blog_title">Binary to Denary Conversions</h2>
|
||||||
<img class="blog_image" src="assets/blog/images/first.png" alt="Binary Conversion Table"/>
|
<img class="blog_image" src="assets/blog/images/first.png" alt="Binary Conversion Table"/>
|
||||||
<p class="blog_content">The image above is an example of a table we can use to convert <span class="moreInfo">8-bit binary numbers<span class="extraInfo">referred to as bytes</span></span> to denary.
|
<p class="blog_content">The image above is an example of a table we can use to convert <span class="moreInfo">8-bit binary numbers<span class="extraInfo">referred to as bytes</span></span> to denary.
|
||||||
Each individual bit is put into each column in the same order as written. Any columns with a 1 should have their values added together.
|
Each individual bit is put into each column in the same order as written. Any columns with a 1 should have their values added together.
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
</section>
|
</section>
|
||||||
<section class="blog_post" id="second">
|
<section class="blog_post" id="second">
|
||||||
<button class="arrow"></button>
|
<button class="arrow"></button>
|
||||||
<h1 class="blog_title">Binary Addition</h1>
|
<h2 class="blog_title">Binary Addition</h2>
|
||||||
<img class="blog_image" src="assets/blog/images/second.jpg" alt="Example of Binary Addition using Long Addition"/>
|
<img class="blog_image" src="assets/blog/images/second.jpg" alt="Example of Binary Addition using Long Addition"/>
|
||||||
<p class="blog_content">In primary school we are taught to use long addition to sum numbers on paper. The practice relies on the concept of carrying digits to
|
<p class="blog_content">In primary school we are taught to use long addition to sum numbers on paper. The practice relies on the concept of carrying digits to
|
||||||
other columns when the simple addition excedes 10. We can use the same technique to add binary numbers just instead of carrying when
|
other columns when the simple addition excedes 10. We can use the same technique to add binary numbers just instead of carrying when
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
</section>
|
</section>
|
||||||
<section class="blog_post" id="third">
|
<section class="blog_post" id="third">
|
||||||
<button class="arrow"></button>
|
<button class="arrow"></button>
|
||||||
<h1 class="blog_title">Binary Subtraction Using 2's Complement</h1>
|
<h2 class="blog_title">Binary Subtraction Using 2's Complement</h2>
|
||||||
<img class="blog_image" src="assets/blog/images/third.jpg" alt="Example of 2's Complement"/>
|
<img class="blog_image" src="assets/blog/images/third.jpg" alt="Example of 2's Complement"/>
|
||||||
<p class="blog_content">Subtraction in binary is a little hard as it is not as intuitive as the addition. To subtract two binary numbers we use a method known as
|
<p class="blog_content">Subtraction in binary is a little hard as it is not as intuitive as the addition. To subtract two binary numbers we use a method known as
|
||||||
2's complement. 2's complement is a way of expressing a binary number as a negative. After doing this conversion, you can just add the two
|
2's complement. 2's complement is a way of expressing a binary number as a negative. After doing this conversion, you can just add the two
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
</section>
|
</section>
|
||||||
<section class="blog_post" id="fourth">
|
<section class="blog_post" id="fourth">
|
||||||
<button class="arrow"></button>
|
<button class="arrow"></button>
|
||||||
<h1 class="blog_title">Binary to Hexadecimal Conversions</h1>
|
<h2 class="blog_title">Binary to Hexadecimal Conversions</h2>
|
||||||
<img class="blog_image" src="assets/blog/images/fourth.png" alt="Denary to Hexadecimal Conversion Table"/>
|
<img class="blog_image" src="assets/blog/images/fourth.png" alt="Denary to Hexadecimal Conversion Table"/>
|
||||||
<p class="blog_content">Hexadecimal is another base system used in programming. Just like binary and denary hexadecimal creates a new column when it's
|
<p class="blog_content">Hexadecimal is another base system used in programming. Just like binary and denary hexadecimal creates a new column when it's
|
||||||
<span class="moreInfo">limit<span class="extraInfo">15</span></span> is reached. However, as the base system is higher than our <span class="moreInfo">standard system<span class="extraInfo">denary</span></span>, we use <span class="moreInfo">letters<span class="extraInfo">A-F</span></span> to express the
|
<span class="moreInfo">limit<span class="extraInfo">15</span></span> is reached. However, as the base system is higher than our <span class="moreInfo">standard system<span class="extraInfo">denary</span></span>, we use <span class="moreInfo">letters<span class="extraInfo">A-F</span></span> to express the
|
||||||
|
|
@ -86,23 +86,7 @@
|
||||||
<p class="blog_details"></p>
|
<p class="blog_details"></p>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
<section class="blog_post" id="fifth">
|
</div>
|
||||||
<button class="arrow"></button>
|
|
||||||
<h1 class="blog_title">Software Life Cycle</h1>
|
|
||||||
<img class="blog_image" src="" alt="Image"/>
|
|
||||||
<p class="blog_content">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste mollitia repellat, possimus nesciunt aspernatur quisquam doloremque! Illo, debitis distinctio, nostrum voluptatum possimus minus odio quaerat quia fugit maiores porro. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate quas recusandae dolorum sunt porro vero, temporibus nesciunt cum, sint iure quis suscipit dignissimos maiores cumque debitis nihil, eveniet dolores nemo.</p>
|
|
||||||
<p class="blog_details"></p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
<section class="blog_post" id="sixth">
|
|
||||||
<button class="arrow"></button>
|
|
||||||
<h1 class="blog_title">Requirements Engineering- Why do we need it?</h1>
|
|
||||||
<img class="blog_image" src="" alt="Image"/>
|
|
||||||
<p class="blog_content">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste mollitia repellat, possimus nesciunt aspernatur quisquam doloremque! Illo, debitis distinctio, nostrum voluptatum possimus minus odio quaerat quia fugit maiores porro. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate quas recusandae dolorum sunt porro vero, temporibus nesciunt cum, sint iure quis suscipit dignissimos maiores cumque debitis nihil, eveniet dolores nemo.</p>
|
|
||||||
<p class="blog_details"></p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue