Confused & frustrated

Reply

Join Date: Apr 2005
Posts: 16,273
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 543
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: Confused & frustrated

 
0
  #11
Nov 29th, 2006
loo notepad is the best, if you go to any webpage that is writte using say, word theres so much unnecessary crap in the source (see it by doing view-source in IE7) whereas with an editor you write what you need and only what you need
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,273
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 543
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: Confused & frustrated

 
0
  #12
Nov 29th, 2006
e.g

 
<html>
<body>
<head>
<title>The title is not displayed</title>
</head>
<body>
<p>This text is displayed</p>
</body>
The content of the body element is displayed in your browser.
<p>
This paragraph
contains a lot of lines
in the source code,
but the browser 
ignores it.
</p>
<p>
This paragraph
contains      a lot of spaces
in the source     code,
but the    browser 
ignores it.
</p>
<p>
   My Bonnie lies over the ocean.
    My Bonnie lies over the sea.
   My Bonnie lies over the ocean.
  Oh, bring back my Bonnie to me.
</p>
<p>Note that your browser simply ignores your formatting!</p>
<p>
The number of lines in a paragraph depends on the size of your browser window. If you resize the browser window, the number of lines in this paragraph will change.
</p>
<p>Paragraph elements are defined by the p tag.</p> 
<p>
To break<br>lines<br>in a<br>paragraph,<br>use the br tag.
</p>
 
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<p>Use heading tags only for headings. Don't use them just to make something bold. Use other tags for that.</p>
<h1 align="center">This is heading 1</h1>
<p>The heading above is aligned to the center of this page. The heading above is aligned to the center of this page. The heading above is aligned to the center of this page.</p>
<p>The hr tag defines a horizontal rule:</p>
<hr>
<!--This comment will not be displayed-->
<body bgcolor="yellow">
<h2>Look: Colored Background!</h2>
<b>This text is bold</b>
<br>
<strong>
This text is strong
</strong>
<br>
<big>
This text is big
</big>
<br>
<em>
This text is emphasized
</em>
<br>
<i>
This text is italic
</i>
<br>
<small>
This text is small
</small>
<br>
This text contains
<sub>
subscript
</sub>
<br>
This text contains
<sup>
superscript
</sup>
<pre>
This is
preformatted text.
It preserves      both spaces
and line breaks.
</pre>
<p>The pre tag is good for displaying computer code:</p>
<pre>
for i = 1 to 10
     print i
next i
</pre>
<code>Computer code</code>
<br>
<kbd>Keyboard input</kbd>
<br>
<tt>Teletype text</tt>
<br>
<samp>Sample text</samp>
<br>
<var>Computer variable</var>
<br>
<p> There are special tags for adresses</p>
<address>
Donald Duck<br>
BOX 555<br>
Disneyland<br>
USA
</address>
<abbr title="United Nations">UN</abbr>
<br>
<acronym title="World Wide Web">WWW</acronym>
<p>The title attribute is used to show the spelled-out version when holding the mouse pointer over the acronym or abbreviation.</p>
<p>This only works for the acronym element in IE 5.</p>
<p>This works for both the abbr and acronym element in Netscape 6.2.</p>
<p>
If your browser supports bi-directional override (bdo), the next line will be written from the right to the left (rtl):
</p>
<bdo dir="rtl">
Here is some Hebrew text
</bdo>
Here comes a long quotation:
<blockquote>
This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation.
</blockquote>
Here comes a short quotation:
<q>
This is a short quotation
</q>
<p>
With the block quote element, the browser inserts line breaks and margins, but the q element does not render as anything special.
</p>
<p>
a dozen is 
<del>twenty</del> 
<ins>twelve</ins> 
pieces
</p>
<p>
Most browsers will overstrike deleted text and underline inserted text.
</p>
<p>
Some older browsers will display deleted or inserted text as plain text.
</p>
<p>
<a href="lastpage.htm">
This text</a> is a link to a page on 
this Web site.
</p>
<p>
<a href="http://www.microsoft.com/">
This text</a> is a link to a page on 
the World Wide Web.
</p>
<p>
You can also use an image as a link:
<a href="lastpage.htm">
<img border="0" src="buttonnext.gif" width="65" height="38">
</a>
</p>
<a href="lastpage.htm" target="_blank">Last Page</a> 
<p>
If you set the target attribute of a link to "_blank",
the link will open in a new window.
</p>
<p>
This is a mail link:
<a href="mailto:someone@microsoft.com?subject=Hello%20again">
Send Mail</a>
</p>
<p>
<b>Note:</b> Spaces between words should be replaced by %20 to <b>ensure</b> that the browser will display your text properly.
</p>
<p>
This is another mailto link:
<a href="<A href="mailto:someone@microsoft.com?cc=someoneelse@microsoft.com&bcc=andsomeoneelse2@microsoft.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!">Send">mailto:someone@microsoft.com?cc=someoneelse@microsoft.com&bcc=andsomeoneelse2@microsoft.com&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!">Send mail!</a>
</p>
<p>
<b>Note:</b> Spaces between words should be replaced by %20 to <b>ensure</b> that the browser will display your text properly.
</p>
<p>
Each table starts with a table tag. 
Each table row starts with a tr tag.
Each table data starts with a td tag.
</p>
<h4>One column:</h4>
<table border="1">
<tr>
  <td>100</td>
</tr>
</table>
<h4>One row and three columns:</h4>
<table border="1">
<tr>
  <td>100</td>
  <td>200</td>
  <td>300</td>
</tr>
</table>
<h4>Two rows and three columns:</h4>
<table border="1">
<tr>
  <td>100</td>
  <td>200</td>
  <td>300</td>
</tr>
<tr>
  <td>400</td>
  <td>500</td>
  <td>600</td>
</tr>
</table>
 
 
</body>
</html>

parts of this taken from w3schools excellent turtorial
Last edited by jbennet; Nov 29th, 2006 at 7:52 am.
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 42
Reputation: goodboy18 is an unknown quantity at this point 
Solved Threads: 0
goodboy18's Avatar
goodboy18 goodboy18 is offline Offline
Light Poster

Re: Confused & frustrated

 
0
  #13
Dec 4th, 2006
Dude, just because you see all this nice sites built by newbies, doesn't mean they built the template or programmed the script. There are so many free nice templates and scripts on the net now, that basically anyone, even my grandma can build a top notch site. As long as you know how to use frontpage or any of the web build programs, you can make a great site.
So no, I don't think you're wasting your time in college. I'm planning to learn the same thing as you. That way I don't have to pay programmers to write me a script.
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 1,311
Reputation: vishesh is on a distinguished road 
Solved Threads: 36
vishesh's Avatar
vishesh vishesh is offline Offline
Nearly a Posting Virtuoso

Re: Confused & frustrated

 
0
  #14
Dec 4th, 2006
Originally Posted by goodboy18 View Post
Dude, just because you see all this nice sites built by newbies, doesn't mean they built the template or programmed the script. There are so many free nice templates and scripts on the net now, that basically anyone, even my grandma can build a top notch site. As long as you know how to use frontpage or any of the web build programs, you can make a great site.
So no, I don't think you're wasting your time in college. I'm planning to learn the same thing as you. That way I don't have to pay programmers to write me a script.
Exactly.

One thing, learning isn't wasting time and learning this would help you to make your own pages. Making web pages is really full of thrill, exitement etc...(atleast when it is your first one).
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the IT Professionals' Lounge Forum


Views: 4275 | Replies: 13
Thread Tools Search this Thread



Tag cloud for IT Professionals' Lounge
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC