Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>With regards to the background image not loading, I would assume that it is because the files are in two different folders, and the image is only in the first folder. If you move the file that isn't working correctly into the same folder as the one that is, the image should work. Alternatively fix the path to the image on the page that isn't working.</p> <p>Aside from the image not loading, there are quite a few errors with your code which would be great for you to be aware of!</p> <p><code>&lt;style&gt;&lt;/style&gt;</code> is meant to be in the <code>&lt;head&gt;&lt;/head&gt;</code> tag.</p> <p><code>&lt;br&gt;&lt;/br&gt;</code> <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br" rel="nofollow">isn't how you use</a> the <code>&lt;br&gt;</code> element. It self closes, so you can either leave it as <code>&lt;br&gt;</code>, or close it yourself with <code>&lt;br /&gt;</code>. It also shouldn't really be used to increase gaps between content, you should be using the CSS margin or padding properties.</p> <p>On your <code>H1</code> inline styles, <code>font-family:Segoe UI;60px;text-align:center;</code>, <code>60px</code> isn't doing anything, you need font-size: before it, so that line would be <code>font-family:Segoe UI;font-size: 60px;text-align:center;</code>.</p> <p>The <code>&lt;marquee&gt;</code> tag <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee" rel="nofollow">isn't part of the standards</a>, and its behaviour is different depending on the browser. </p> <p>I would also recommend putting all of your css into your <code>&lt;style&gt;</code> tag at the top. It makes your HTML a lot cleaner, and using HTML styles is generally bad practice these days!</p> <p>Oh, and as WP_ said, <code>&lt;pr&gt;</code> isn't an element. <code>&lt;p&gt;</code> and <code>&lt;pre&gt;</code> are though. <code>&lt;p&gt;</code> should be used for paragraphs.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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