Skip to main content
deleted 35 characters in body; edited tags; edited title
Source Link
Jamal
  • 35.2k
  • 13
  • 134
  • 238

Html Webpage improvements Basic webpage structure

Can anyone advise me onsuggest any improvements that could help with the structure, layout and design for the pages.

The advise would be greatly appreciated.?

Code for one of the pages is below ( allall the same butexcept for the names):

Html Webpage improvements

Can anyone advise me on any improvements that could help with the structure, layout and design for the pages.

The advise would be greatly appreciated.

Code for one of the pages below ( all the same but names)

Basic webpage structure

Can anyone suggest any improvements that could help with the structure, layout and design for the pages?

Code for one of the pages is below (all the same except for the names):

Tweeted twitter.com/#!/StackCodeReview/status/461199654118764544
added 3 characters in body
Source Link
Malachi
  • 29k
  • 11
  • 86
  • 188

imI'm new to HTML coding and have created a basic webpage structure for a basic website with 5 pages.

canCan anyone adiveadvise me on any improvmentsimprovements that could help with the structure, layout and design for the pages.

theThe advise would be greatly appreciated.

codeCode for one of the pages below ( all the same but names)

im new to HTML coding and have created a basic webpage structure for a basic website with 5 pages.

can anyone adive me on any improvments that could help with the structure, layout and design for the pages.

the advise would be greatly appreciated.

code for one of the pages below ( all the same but names)

I'm new to HTML coding and have created a basic webpage structure for a basic website with 5 pages.

Can anyone advise me on any improvements that could help with the structure, layout and design for the pages.

The advise would be greatly appreciated.

Code for one of the pages below ( all the same but names)

Source Link

Html Webpage improvements

im new to HTML coding and have created a basic webpage structure for a basic website with 5 pages.

can anyone adive me on any improvments that could help with the structure, layout and design for the pages.

the advise would be greatly appreciated.

code for one of the pages below ( all the same but names)

<!DOCTYPE html>
<html lang="en-GB">
<Head>
    <title>Fellows and Fullwood LTD</title>
    <meta Charset="utf-8"/>
    <link rel="stylesheet" type="text/css" href="styles.css" />
</Head>
<body>
    <div id="container">
        <div id="Header">
            <h1 align="center"><img src="Images/fellows.gif" width="150" height="39" longdesc="Images/fellows.gif"><font size="12">Fellows and Fullwood</font></h1>
        </div>
        <div id="nav">
            <u1><!--
            --><li><a href="#">Home</a></li><!--
            --><li><a href="#">About Us</a></li><!--
            --><li><a href="#">News</a></li><!--
            --><li><a href="#">Careers</a></li><!--
            --><li><a href="#">Contact Us</a></li>
            </u1>
        </div>
        <div id="Main">
          <h2>Contact us</h2><form  action="" method="POST" enctype="multipart/form-data">
            <div align="center">
              <p>
                <input type="hidden" name="action" value="submit"/> 
              </p>
              <p>Your name:<br>
              <input name="name" type="text" value="" size="30"/>
                <br /> 
                Your email:<br>
                <input name="email" type="text" value="" size="30"/>
  <br /> Your message:<br />
                <textarea name="message" rows="7" cols="30"> </textarea> 
 <br /><input type="submit" value="Send email"/>
              </p>
            </div>
          </form> 

            <p>lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here lots and lots of text here 
            </p>
        </div>
        <div id="Sidebar">
            <h2>Sidebar</h2>
            <u1>
              <li><a href="#">Home</a>                  </li>
              <br></br>
                <li><a href="#">About Us</a></li>
              <br></br>
                <li><a href="#">News</a></li>
              <br></br>
                <li><a href="#">Careers</a></li>
              <br></br>
                <li><a href="#">Contact Us</a></li>
                <br></br>
          </u1>
        </div>
        <div id="Footer">
            <p>&copy;Copyright Fellows and Fullwood 2014.</p>
        </div>
    </div>
</body>