Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<pre><code>&lt;body style="background:url('images/farmancover.jpg');"&gt; </code></pre> <p>Although you would normally add this to your CSS file instead of using an inline style.</p> <pre><code>body { background:url('images/farmancover.jpg'); } </code></pre> <p>Specifically for your site, the image may not be showing because your image file is actually <code>images/FarmanCover1.jpg</code> (note that the URL is case sensitive).</p> <p>The following should give you the desired effect.</p> <pre><code>&lt;body style="background:url('images/FarmanCover1.jpg') no-repeat;"&gt; </code></pre> <p>You also have a number of HTML errors but the following has been tested working</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt; Farman Pirzada - UX Designer - Harvesting creativity one at a time - Ohio, US &lt;/title&gt; &lt;!-- STYLES --&gt; &lt;link rel="stylesheet" type="text/css" href="http://www.farmanp-ux.com/css/style.css" /&gt; &lt;meta content= "Farman Pirzada, UX Designer, CSS, HTML5, Web 2.0, portfolio" /&gt; &lt;/head&gt; &lt;body style="background:url('http://www.farmanp-ux.com/images/farmancover.jpg') no-repeat fixed;"&gt; &lt;img src="http://www.farmanp-ux.com/images/farmanUX.png" class="center" alt="" /&gt; &lt;div id="navmenu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="farman.html"&gt;home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="about.html"&gt;about&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="design.html"&gt;designs&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="services.html"&gt;services&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="contact.html"&gt;contact&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload