<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>code &amp;mdash; furycd001</title>
    <link>https://write.as/furycd001/tag:code</link>
    <description></description>
    <pubDate>Tue, 01 Sep 2026 07:43:59 +0000</pubDate>
    <item>
      <title>CSS reset :?</title>
      <link>https://write.as/furycd001/css-reset?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[alt text&#xA;&#xA;Every web browser uses what is known as a base stylesheet. This ensures that any HTML is rendered somewhat reasonably when you forget to include a piece of custom CSS. You know things like, blue for links that you&#39;ve yet to visit, purple for links that you&#39;ve already visited, bold for the likes of strong tags &amp; different text sizes for heading. All those things and more are not always the same browser to browser. NO.. Not all browsers use the same base stylesheet, so that custom CSS you&#39;ve just spent hours, maybe even days creating might be affected in some way by a default style that&#39;s implemented within your browsers base stylesheet. The easiest and most simplistic way to keep your CSS intact is to include a CSS reset. Sometimes though, people are happy with what their browser’s base stylesheet provides. Things such as font weights, line height, bullet points and other styles are often fine. If they’re not, then they can easily be adjusted.&#xA;&#xA;What is a CSS reset :?&#xA;&#xA;A CSS reset essentially provides a blank canvas so that any styles applied are sort of almost certain to be your own. Most CSS resets require you to re-style all your elements, which could make your CSS file much larger than you&#39;d like. But at the same time it will also reduce browser compatibility issues.&#xA;&#xA;Should I use a CSS reset :?&#xA;&#xA;Should you use a CSS reset ?? Well that really depends. Like if you have a pretty small or basic website then creating and using a CSS reset might not be worth the time and effort. Though if you have a pretty large site or a site that just has tons of elements, then using a CSS reset might just the right thing. CSS resets may be appealing and work for you, but they&#39;ll not be for everyone. You&#39;ll need to weigh everything out and look at everything for yourself.&#xA;&#xA;----&#xA;#browser #www #web #css #html #code]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.imgur.com/kGv4wfV.png" alt="alt text" title="HTML CSS"/></p>

<p>Every web browser uses what is known as a base stylesheet. This ensures that any <a href="https://en.wikipedia.org/wiki/HTML" rel="nofollow">HTML</a> is rendered somewhat reasonably when you forget to include a piece of custom <a href="https://en.wikipedia.org/wiki/Cascading_Style_Sheets" rel="nofollow">CSS</a>. You know things like, blue for links that you&#39;ve yet to visit, purple for links that you&#39;ve already visited, bold for the likes of strong tags &amp; different text sizes for heading. All those things and more are not always the same browser to browser. NO.. Not all browsers use the same base stylesheet, so that custom CSS you&#39;ve just spent hours, maybe even days creating might be affected in some way by a default style that&#39;s implemented within your browsers base stylesheet. The easiest and most simplistic way to keep your CSS intact is to include a CSS reset. Sometimes though, people are happy with what their browser’s base stylesheet provides. Things such as font weights, line height, bullet points and other styles are often fine. If they’re not, then they can easily be adjusted.</p>

<h2 id="what-is-a-css-reset">What is a CSS reset :?</h2>

<p>A CSS reset essentially provides a blank canvas so that any styles applied are sort of almost certain to be your own. Most CSS resets require you to re-style all your elements, which could make your CSS file much larger than you&#39;d like. But at the same time it will also reduce browser compatibility issues.</p>

<h2 id="should-i-use-a-css-reset">Should I use a CSS reset :?</h2>

<p>Should you use a CSS reset ?? Well that really depends. Like if you have a pretty small or basic website then creating and using a CSS reset might not be worth the time and effort. Though if you have a pretty large site or a site that just has tons of elements, then using a CSS reset might just the right thing. CSS resets may be appealing and work for you, but they&#39;ll not be for everyone. You&#39;ll need to weigh everything out and look at everything for yourself.</p>

<hr/>

<p><a href="https://write.as/furycd001/tag:browser" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">browser</span></a> <a href="https://write.as/furycd001/tag:www" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">www</span></a> <a href="https://write.as/furycd001/tag:web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">web</span></a> <a href="https://write.as/furycd001/tag:css" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">css</span></a> <a href="https://write.as/furycd001/tag:html" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">html</span></a> <a href="https://write.as/furycd001/tag:code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">code</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/css-reset</guid>
      <pubDate>Mon, 31 Dec 2018 02:38:37 +0000</pubDate>
    </item>
    <item>
      <title>A common mistake made when coding a hamburger menu</title>
      <link>https://write.as/furycd001/a-common-mistake-made-when-coding-a-hamburger-menu?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[alt text&#xA;&#xA;When coding a hamburger menu most developers or coders position the menu absolute, when in actual fact it should be the content that is positioned once the sidebar is opened. Instead of positioning the menu itself, simply position everything else that&#39;s in the menu. Below is some example code, followed up with explanatory comments....&#xA;&#xA;HTML&#xA;&#xA;~html&#xA;html&#xA;head/head&#xA;body&#xA;  div class=&#34;sidebar&#34;Hamburger menu links go here/div&#xA;  div class=&#34;main-content&#34;button class=&#34;hamburger-menu-icon&#34; onClick=&#34;toggleSidebar()&#34;🍔/button/div&#xA;/body&#xA;/html&#xA;~&#xA;&#xA;CSS&#xA;&#xA;/ Arbitrary CSS variable values for explanatory purposes /&#xA;:root {&#xA;  --sidebar-width: 100px;&#xA;  --sidebar-bg-colour: blue;&#xA;}&#xA;&#xA;.sidebar {&#xA;  display: none;&#xA;  position: relative;&#xA;  width: var(--sidebar-width);&#xA;}&#xA;&#xA;@media (max-width: 767px) {&#xA;  html.sidebar-is-open .sidebar {&#xA;    display: block; &#xA;     / &#xA;      The sidebar is just rendered in default position,&#xA;      as it appears in the document flow&#xA;     /&#xA;  }&#xA;&#xA;  html.sidebar-is-open .main-content {&#xA;    position: fixed; &#xA;    / &#xA;     It is the main content that is positioned. &#xA;     This is the crux of the implementation. The rest is all sugar.&#xA;&#xA;     Cons: the body will scroll to the top, losing your user&#39;s scroll position&#xA;    /&#xA;&#xA;    / prevents resizing from its original full-screen width /&#xA;    bottom: 0;&#xA;    left: 0;&#xA;    right: 0;&#xA;    top: 0;&#xA;    width: 100%; &#xA;&#xA;    overflow: hidden;&#xA;  }&#xA;&#xA;  / Optional enhancement: &#xA;     make the overscroll on iPhone the same colour as the sidebar /&#xA;  html.sidebar-is-open body {&#xA;    background-color: var(--sidebar-bg-colour);&#xA;  }&#xA;  .sidebar {&#xA;    background-color: var(--sidebar-bg-colour);&#xA;  }&#xA;}&#xA;&#xA;const documentElement = document.querySelector(&#34;html&#34;);&#xA;const contentElement = document.querySelector(&#34;.main-content&#34;);&#xA;const sidebarElement = document.querySelector(&#34;.sidebar&#34;);&#xA;const sidebarIsOpen = () =  documentElement.classList.contains(&#34;sidebar-is-open&#34;);&#xA;&#xA;const openSidebar = () =  {&#xA;  / How you trigger the change is up to you /&#xA;  documentElement.classList.add(&#34;sidebar-is-open&#34;);&#xA;};&#xA;&#xA;const closeSidebar = () =  {&#xA;  documentElement.classList.remove(&#34;sidebar-is-open&#34;);&#xA;&#xA;  / Sidebar is closed, so keeping event listener is just a waste of resources&#xA;     and source of bugs if openSidebar() is run again /&#xA;  contentElement.removeEventListener(&#34;click&#34;);&#xA;};&#xA;&#xA;const toggleSidebar = () =  {&#xA;  sidebarIsOpen() ? closeSidebar() : openSidebar();&#xA;};&#xA;&#xA;----&#xA;#browser #www #web #css #html #code]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.imgur.com/zmuKsxC.jpg" alt="alt text" title="Hamburger"/></p>

<p>When coding a hamburger menu most developers or coders position the menu absolute, when in actual fact it should be the content that is positioned once the sidebar is opened. Instead of positioning the menu itself, simply position everything else that&#39;s in the menu. Below is some example code, followed up with explanatory comments....</p>

<h2 id="html">HTML</h2>

<pre><code class="language-html">&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
  &lt;div class=&#34;sidebar&#34;&gt;Hamburger menu links go here&lt;/div&gt;
  &lt;div class=&#34;main-content&#34;&gt;&lt;button class=&#34;hamburger-menu-icon&#34; onClick=&#34;toggleSidebar()&#34;&gt;🍔&lt;/button&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>

<h2 id="css">CSS</h2>

<pre><code class="language-css">/* Arbitrary CSS variable values for explanatory purposes */
:root {
  --sidebar-width: 100px;
  --sidebar-bg-colour: blue;
}

.sidebar {
  display: none;
  position: relative;
  width: var(--sidebar-width);
}

@media (max-width: 767px) {
  html.sidebar-is-open .sidebar {
    display: block; 
     /* 
      The sidebar is just rendered in default position,
      as it appears in the document flow
     */
  }

  html.sidebar-is-open .main-content {
    position: fixed; 
    /* 
     It is the main content that is positioned. 
     This is the crux of the implementation. The rest is all sugar.

     Cons: the body will scroll to the top, losing your user&#39;s scroll position
    */

    /* prevents resizing from its original full-screen width */
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%; 

    overflow: hidden;
  }

  /* Optional enhancement: 
     make the overscroll on iPhone the same colour as the sidebar */
  html.sidebar-is-open body {
    background-color: var(--sidebar-bg-colour);
  }
  .sidebar {
    background-color: var(--sidebar-bg-colour);
  }
}

const documentElement = document.querySelector(&#34;html&#34;);
const contentElement = document.querySelector(&#34;.main-content&#34;);
const sidebarElement = document.querySelector(&#34;.sidebar&#34;);
const sidebarIsOpen = () =&gt; documentElement.classList.contains(&#34;sidebar-is-open&#34;);

const openSidebar = () =&gt; {
  /* How you trigger the change is up to you */
  documentElement.classList.add(&#34;sidebar-is-open&#34;);
};

const closeSidebar = () =&gt; {
  documentElement.classList.remove(&#34;sidebar-is-open&#34;);

  /* Sidebar is closed, so keeping event listener is just a waste of resources
     and source of bugs if openSidebar() is run again */
  contentElement.removeEventListener(&#34;click&#34;);
};

const toggleSidebar = () =&gt; {
  sidebarIsOpen() ? closeSidebar() : openSidebar();
};
</code></pre>

<hr/>

<p><a href="https://write.as/furycd001/tag:browser" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">browser</span></a> <a href="https://write.as/furycd001/tag:www" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">www</span></a> <a href="https://write.as/furycd001/tag:web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">web</span></a> <a href="https://write.as/furycd001/tag:css" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">css</span></a> <a href="https://write.as/furycd001/tag:html" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">html</span></a> <a href="https://write.as/furycd001/tag:code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">code</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/a-common-mistake-made-when-coding-a-hamburger-menu</guid>
      <pubDate>Mon, 24 Dec 2018 13:46:03 +0000</pubDate>
    </item>
    <item>
      <title>Adding a full page background image to any web page.</title>
      <link>https://write.as/furycd001/adding-a-full-page-background-image-to-any-web-page?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[----&#xA;&#xA;Here&#39;s a simple piece of CSS code that will help you add a background image to any web page and make it take up the full page width &amp; height. Simply add the code below to your &#34;.css&#34; file and then change the path to the image.&#xA;&#xA;alt text&#xA;&#xA;CSS&#xA;~css&#xA;html { &#xA;background: url(siteimages/whatever.jpg) no-repeat center center fixed; &#xA;-webkit-background-size: cover;&#xA;-moz-background-size: cover;&#xA;-o-background-size: cover;&#xA;background-size: cover;&#xA;}&#xA;~&#xA;&#xA;----&#xA;#HTML #CSS #Code #Web]]&gt;</description>
      <content:encoded><![CDATA[<hr/>

<p>Here&#39;s a simple piece of CSS code that will help you add a background image to any web page and make it take up the full page width &amp; height. Simply add the code below to your “.css” file and then change the path to the image.</p>

<p><img src="http://i.imgur.com/eGkNm7p.png" alt="alt text" title="Full page background"/></p>

<h2 id="css">CSS</h2>

<pre><code class="language-css">html { 
background: url(siteimages/whatever.jpg) no-repeat center center fixed; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</code></pre>

<hr/>

<p><a href="https://write.as/furycd001/tag:HTML" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HTML</span></a> <a href="https://write.as/furycd001/tag:CSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSS</span></a> <a href="https://write.as/furycd001/tag:Code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Code</span></a> <a href="https://write.as/furycd001/tag:Web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Web</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/adding-a-full-page-background-image-to-any-web-page</guid>
      <pubDate>Mon, 29 Oct 2018 15:54:46 +0000</pubDate>
    </item>
    <item>
      <title>Creating an apple style search box</title>
      <link>https://write.as/furycd001/creating-an-apple-style-search-box?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[----&#xA;&#xA;alt text&#xA;&#xA;Ever wanted to create one of those neat look search boxes that used to be found on apples website ?? Well here&#39;s the HTML &amp; CSS code to create just the thing. Note that with search boxes you can change the action=&#34;http://www.duckduckgo.com/search&#34; to any search engine you like. I&#39;ve chosen to use Duckduckgo because that&#39;s my search engine of choice.&#xA;&#xA;[ NOTE THE &#34;FORM&#34; &amp; &#34;INPUT&#34; HTML WAS NOT SHOWING CORRECTLY SO I HAD TO ENTER A SPACE AT THE START AFTER &#34;&lt;&#34;. PLEASE REMOVE THIS SPACE BEFORE USING THIS CODE ]&#xA;&#xA;HTML&#xA;&#xA;~html&#xA; form method=&#34;get&#34; action=&#34;http://www.duckduckgo.com/search&#34; id=&#34;search&#34; target=&#34;_blank&#34;&#xA; input name=&#34;q&#34; type=&#34;text&#34; size=&#34;40&#34; placeholder=&#34;Search...&#34; /&#xA;~&#xA;&#xA;CSS&#xA;&#xA;~css&#xA;search input[type=&#34;text&#34;] {&#xA;background-color; #87afc7;&#xA;border: 0 none;&#xA;font-family: &#39;Ubuntu Mono&#39;, monospace;&#xA;color: #222222;&#xA;width: 400px;&#xA;padding: 6px 15px 6px 35px;&#xA;-webkit-border-radius: 20px;&#xA;-moz-border-radius: 20px;&#xA;border-radius: 20px;&#xA;text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);&#xA;-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;&#xA;-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;&#xA;box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;&#xA;-webkit-transition: all 0.7s ease 0s;&#xA;-moz-transition: all 0.7s ease 0s;&#xA;-o-transition: all 0.7s ease 0s;&#xA;transition: all 0.7s ease 0s;&#xA;}&#xA; &#xA;search input[type=&#34;text&#34;]:focus {&#xA;width: 400px;&#xA;}&#xA;~&#xA;&#xA;----&#xA;&#xA;#HTML #CSS #Web #Apple #Duckduckgo #Search #Code]]&gt;</description>
      <content:encoded><![CDATA[<hr/>

<p><img src="https://i.imgur.com/xtzSPmD.png" alt="alt text" title="Search Box"/></p>

<p>Ever wanted to create one of those neat look search boxes that used to be found on apples website ?? Well here&#39;s the HTML &amp; CSS code to create just the thing. Note that with search boxes you can change the action=“<a href="http://www.duckduckgo.com/search%22" rel="nofollow">http://www.duckduckgo.com/search&#34;</a> to any search engine you like. I&#39;ve chosen to use <a href="http://start.duckduckgo.com/" rel="nofollow">Duckduckgo</a> because that&#39;s my search engine of choice.</p>

<p><em>[ NOTE THE “FORM” &amp; “INPUT” HTML WAS NOT SHOWING CORRECTLY SO I HAD TO ENTER A SPACE AT THE START AFTER “&lt;“. PLEASE REMOVE THIS SPACE BEFORE USING THIS CODE ]</em></p>

<h2 id="html">HTML</h2>

<pre><code class="language-html">&lt; form method=&#34;get&#34; action=&#34;http://www.duckduckgo.com/search&#34; id=&#34;search&#34; target=&#34;_blank&#34;&gt;
&lt; input name=&#34;q&#34; type=&#34;text&#34; size=&#34;40&#34; placeholder=&#34;Search...&#34; /&gt;
</code></pre>

<h2 id="css">CSS</h2>

<pre><code class="language-css">#search input[type=&#34;text&#34;] {
background-color; #87afc7;
border: 0 none;
font-family: &#39;Ubuntu Mono&#39;, monospace;
color: #222222;
width: 400px;
padding: 6px 15px 6px 35px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
-webkit-transition: all 0.7s ease 0s;
-moz-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
}
 
#search input[type=&#34;text&#34;]:focus {
width: 400px;
}
</code></pre>

<hr/>

<p><a href="https://write.as/furycd001/tag:HTML" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HTML</span></a> <a href="https://write.as/furycd001/tag:CSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSS</span></a> <a href="https://write.as/furycd001/tag:Web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Web</span></a> <a href="https://write.as/furycd001/tag:Apple" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Apple</span></a> <a href="https://write.as/furycd001/tag:Duckduckgo" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Duckduckgo</span></a> <a href="https://write.as/furycd001/tag:Search" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Search</span></a> <a href="https://write.as/furycd001/tag:Code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Code</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/creating-an-apple-style-search-box</guid>
      <pubDate>Fri, 26 Oct 2018 19:42:38 +0000</pubDate>
    </item>
    <item>
      <title>Styling multiple html links with css.</title>
      <link>https://write.as/furycd001/styling-multiple-html-links-with-css?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[---&#xA;&#xA;You can style multiple html links differently on the same page simply by adding a class to the link &amp; then some css. For example the two linsk below would be styled with the css that follows....&#xA;&#xA;HTML&#xA;&#xA;~html&#xA;a href=“something dot html” class=“newclass”Link text/a&#xA;a href=“somethingv1 dot html” class=“anothernewclass”More link text/a&#xA;~&#xA;&#xA;CSS&#xA;&#xA;~css&#xA;a.newclass:link {&#xA;color: #444444;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.newclass:visited {&#xA;color: #444444;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.newclass:hover {&#xA;color: #f2f2f2;&#xA;text-decoration: none;&#xA;    }&#xA;&#xA;a.newclass:active {&#xA;color: #444444;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.anothernewclass:link {&#xA;color: #f2f2f2;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.anothernewclass:visited {&#xA;color: #f2f2f2;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.anothernewclass:hover {&#xA;color: #222222;&#xA;text-decoration: none;&#xA;}&#xA;&#xA;a.anothernewclass:active {&#xA;color: #f2f2f2;&#xA;text-decoration: none;&#xA;}&#xA;~&#xA;&#xA;----&#xA;&#xA;#Web #HTML #CSS #Code]]&gt;</description>
      <content:encoded><![CDATA[<hr/>

<p>You can style multiple html links differently on the same page simply by adding a class to the link &amp; then some css. For example the two linsk below would be styled with the css that follows....</p>

<h2 id="html">HTML</h2>

<pre><code class="language-html">&lt;a href=“something dot html” class=“newclass”&gt;Link text&lt;/a&gt;
&lt;a href=“somethingv1 dot html” class=“anothernewclass”&gt;More link text&lt;/a&gt;
</code></pre>

<h2 id="css">CSS</h2>

<pre><code class="language-css">a.newclass:link {
color: #444444;
text-decoration: none;
}

a.newclass:visited {
color: #444444;
text-decoration: none;
}

a.newclass:hover {
color: #f2f2f2;
text-decoration: none;
    }

a.newclass:active {
color: #444444;
text-decoration: none;
}

a.anothernewclass:link {
color: #f2f2f2;
text-decoration: none;
}

a.anothernewclass:visited {
color: #f2f2f2;
text-decoration: none;
}

a.anothernewclass:hover {
color: #222222;
text-decoration: none;
}

a.anothernewclass:active {
color: #f2f2f2;
text-decoration: none;
}
</code></pre>

<hr/>

<p><a href="https://write.as/furycd001/tag:Web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Web</span></a> <a href="https://write.as/furycd001/tag:HTML" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HTML</span></a> <a href="https://write.as/furycd001/tag:CSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSS</span></a> <a href="https://write.as/furycd001/tag:Code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Code</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/styling-multiple-html-links-with-css</guid>
      <pubDate>Wed, 22 Aug 2018 17:21:42 +0000</pubDate>
    </item>
    <item>
      <title>Fullscreen background css.</title>
      <link>https://write.as/furycd001/fullscreen-background-css?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[---&#xA;&#xA;Add the code below to the top of your .css file. Change the image name / location &amp; everything’s good to go….&#xA;&#xA;CSS&#xA;&#xA;~css&#xA;html {&#xA;background: url(image.jpg) no-repeat center center fixed;&#xA;-webkit-background-size: cover;&#xA;-moz-background-size: cover;&#xA;-o-background-size: cover;&#xA;background-size: cover;&#xA;}&#xA;~&#xA;&#xA;----&#xA;&#xA;#Web #HTML #CSS #Code]]&gt;</description>
      <content:encoded><![CDATA[<hr/>

<p>Add the code below to the top of your .css file. Change the image name / location &amp; everything’s good to go….</p>

<h2 id="css">CSS</h2>

<pre><code class="language-css">html {
background: url(image.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</code></pre>

<hr/>

<p><a href="https://write.as/furycd001/tag:Web" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Web</span></a> <a href="https://write.as/furycd001/tag:HTML" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">HTML</span></a> <a href="https://write.as/furycd001/tag:CSS" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">CSS</span></a> <a href="https://write.as/furycd001/tag:Code" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Code</span></a></p>
]]></content:encoded>
      <guid>https://write.as/furycd001/fullscreen-background-css</guid>
      <pubDate>Wed, 22 Aug 2018 17:20:13 +0000</pubDate>
    </item>
  </channel>
</rss>