• Turn your smartphone into a Game Controller…


    Turn your smartphone into a Game Controller. Still not as cool as the original NES controller, though.

    Wanderplayer: Turns Your Smartphone Into A Game Controller

    The smartphone touchscreen interface opened up new possibilities for input controls. With a touchscreen, you can have a keyboard with different languages as

  • How to send e-mails from the command line…


    How to send e-mails from the command line:

    Easily Send Command Line Emails with Blat [Windows]

    Blat. Not exactly the word you envision would be the name of a tool that you can use to send out emails to anyone in the world, from any application or software tool that you desire. It more sounds li…

  • Should my site participate in the SOPA blackout…


    Should my site participate in the SOPA blackout tomorrow? Or would you guys rather not be bothered by it?

  • Make A Complete Website From Scratch – Part 1: HTML


    [vc_row][vc_column width=”2/3″][vc_separator][venera_framed_image content_type=”video” css_animation=”appear” frame_type=”browser” slider_engine=”flexslider” video_link=”https://www.youtube.com/watch?v=6Ct6emxVR9w” browser_url=”https://www.youtube.com/watch?v=6Ct6emxVR9w”][vc_separator][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row][vc_row][vc_column width=”2/3″][vc_tabs][vc_tab title=”About This Project” tab_id=”1402713028-1-39e9a4-2f88123b-7794″][vc_column_text]

    Many people on the internet aren’t familiar with how to make a decent website on the internet. In an effort to remedy that, this episode kicks off the first of a five part series explaining the different aspects of building a good looking, database driven website from scratch.

     

    In Part 1 of this series, we will take a look at HTML basics.

    Here’s a list of the other tutorials in the series:

    [/vc_column_text][/vc_tab][vc_tab title=”Code” tab_id=”1402753910272-3-8123b-7794″][vc_button title=”Download Code Sample” target=”_blank” icon=”none” size=”btn-huge” href=”http://www.tinkernut.com/demos/304_html/304_html.zip”][vc_column_text]

    HTML Basics

    HTML stands for Hyper Text Markup Language and provides the backbone structure for webpages. Not to be confused with a programming language, HTML is a markup language that was designed to link documents and media together in an interactive way.

    HTML is standardized through W3C and the latest version is HTML 4.01 (see http://www.w3.org/TR/html401/).

    HTML is evolving constantly and presently there are 2 important variations eg XHTML and HTML5.

    XHTML (eXtensibleHTML) is a derivation of HTML and XML. HTML5 is the fifth revision of the HTML standard. (see http://en.wikipedia.org/wiki/HTML5.)

    HTML/XHTML/HTML5 have different Doctype Definitions (DTD’s) to be identified by browsers. For standards compliant HTML a web page needs a valid DTD (at the top of the html page).
    HTML 4.01 strict DTD :

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    
    "http://www.w3.org/TR/html4/strict.dtd">

    For information on valid DTD’s, see http://www.w3.org/QA/2002/04/valid-dtd-list.html.

    HTML Editors

    There is a large selection of software available on the market (free and paid) directed towards website creation. A majority of website creation software is called What You See Is What You Get or WYSIWYG. A good example of commercial software is Adobe’s Dreamweaver, while a good example of open source software is Mozilla’s Kompozer software. Despite the availability of web design software, it is not required to create a website. A website can be created using a basic text editor and a web browser for previewing.

    HTML Structure

    HTML utilizes an element tagging structure. This means that every element of the code is tagged so that the web browser knows how to translate it. With a few exceptions, each tag generally comes in pairs: and opening tag and a closing tag. In between each tag is the content that is being tagged. Certain tags can also contain attributes, which enhances the properties of the tagged content.

    Tags

    For a list of commonly used tags, visit the tags page. An HTML tag is used by browsers to help classify and organize different elements within a web page. Tags are characterized by being surrounded by an opening and closing angle bracket (example: <tag>). An opening tag (example: <tag> signifies the begenning of an element’s section and a closing tag (example: </tag> is signifies the end of an element’s section. Here’s an example of a how a paragraph element tag would be used:

     

    <p>Welcome to my webpage</p>

    For some tags, the element does not need to surround or encompass any content. In those cases, it is not necessary to have both an opening and closing tag. Instead, a shorthand is available to close out the tag. It consists only of a forward slash and a closing angle bracket. An example of it’s usage can be seen in image element tag:

    <img src=”my_image.jpg” />
    Tags can be contained within other tags in a method called “nesting”. Nesting is required by some tags (such as lists), while with other tags it just combines itself onto the content it surrounds. When it comes to structure, the “indention” method is generally preferred to show nesting tags. This is when you list one set of tags, and then you indent each nesting set of tags within it. A good example is with lists

    <ul>

    <li>List Item</li>

    </ul>
    Tags that don’t have closings
    Tags can be nested

    Text Formatting

    HTML text formatting generally takes place in the body of the HTML code. It includes text structure, such as paragraphs, lists, font color, bold, italicizing, and underlining. The table lists a few of the commonly used text formatting tags, but you can find a more extensive list here

    Formatting Tag Formatting Name Description Example Output
    <p> Paragraph Designates the beginning and ending of a paragraph <p>This is my paragraph</p> This is my paragraph
    <b> Bold Makes the tagged font bold. <b>This is my paragraph</b> This is my paragraph
    <i> Italics Italicizes the tagged font. <i>This is my paragraph</i> This is my paragraph
    <u> Underline Underlines the tagged font. <u>This is my paragraph</u> This is my paragraph
    <ul> Unorganized List Creates a bulleted list. MUST be coupled with the <li> tag <ul>

    <li>List item 1</li>
    <li>List item 2</li>

    </ul>

    • List item 1
    • List item 2
    <ol> Organized List Creates a numbered list. MUST be coupled with the <li> tag <ol>

    <li>List item 1</li>
    <li>List item 2</li>

    </ol>

    1. List item 1
    2. List item 2
    <li> Organized List Creates a numbered list. MUST be coupled with either the <ul> or <ol> tags <ol>

    <li>List item 1</li>
    <li>List item 2</li>

    </ol>

    1. List item 1
    2. List item 2

    Attributes

    For a list of commonly used attributes, visit the attributes page. HTML attributes are found inside of tags and help to enhance the properties of the tagged element. Attributes follow the format of “attribute name” followed by a “=” and then the attribute value surrounded by quotes. Here’s an example

    <body bgcolor = “blue”>
    Not all tags allow for attributes, and not all attributes are compatible with all tags. The type of attribute available for a tag depends on what type of tag it is. For example, an image tag allows for source, width, height, and alt tags, all of which help format and enhance the picture

    <img src=”picture.jpb” width=”150″ height=”50″ alt=”My Picture”/>
    Because those attributes are specific to an image, none of them will work with a link tag. Instead, a link tag has it’s own set of attributes: hyperlink reference, target, and name

    <a href=”mypage.html” target=”_blank” type=”mypage”>Go to My Page </a>
     

    Tables

    For table attributes (bgcolor, images, rowspan, colspan), visit the table page. There are many ways to organize the layout of a webpage using different scripting techniques, but the best way to do it using solely HTML is through the use of tables. While they are very useful, tables can be exceedingly difficult to use depending on how complicated your layout is. A tables structure has to follow certain tagging guidelines in order for it to work properly. These guidelines are as follows:

    1. Each table begins and ends with the <table></table> tags.
      1. Before the table will work, you must have at least one row and one column.
    2. Nested between the table tags are the row tags <tr></tr>.
      1. You must have at least one row in each table in order for it to function properly.
      2. Each row must have at least one column nested within it.
    3. Nested between the row tags are data cell tags <td></td>.
      1. You must have at least one data cell in each row.
      2. You must have the same ammount of cells in each row (unless using colspan or rowspan attributes)
      3. Although these are commonly know as “column” tags, they represent cells. A cell can exist without a column, but a column cannot exist without a cell.

    Here is an example of a two cell, two row table:

    <table>

    <tr>

    <td>row 1, col 1</td>
    <td>row 1, col 2</td>
    </tr>
    <tr>

    <td>row 2, col 1</td>
    <td>row 2, col 2</td>
    </tr>

    </table>

     

    [/vc_column_text][/vc_tab][vc_tab title=”Important Links” tab_id=”1402753981900-3-10123b-7794″][vc_column_text] Help support my channel: http://www.patreon.com/tinkernut Follow Tinkernut! Google + Facebook Twitter [/vc_column_text][/vc_tab][/vc_tabs][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row]

  • Try your luck at getting free stuff at Sparkfun…


    Try your luck at getting free stuff at Sparkfun's freeday today!

    http://www.sparkfun.com/

    News – SparkFun Electronics

    Many of the capcha servers make the first word by distorting known text, and the second word is just something from a scanned image. The upshot is the server DOESN'T KNOW what the second word is! …

  • Tinkernut Live! Today at 3pm Eastern!


    Tinkernut Live! Today at 3pm Eastern!

    http://www.youtube.com/watch?v=yVCBt1sxTRA

  • Anyone interested in helping me out with…


    Anyone interested in helping me out with a wiki?

    Main Page – TinkernutWiki

    Main Page. From TinkernutWiki. Jump to: navigation, search. MediaWiki has been successfully installed. Consult the User's Guide for information on using the wiki software. faq. [edit] Getting star…

  • Wow, this would be awesome! Print out a…


    Wow, this would be awesome! Print out a 3D version of your Minecraft world!

    3D printing Minecraft worlds – Hack a Day

    If you've ever wanted to build an awesome tabletop game or model train layout scenery, you probably couldn't do better than printing Minecraft worlds on a RepRap. This guide comes courtesy of [Nudel] …

  • New Features for 2012!


    Here’s what’s new with Tinkernut for 2012:
    Tinkernerdz Points – http://www.tinkernut.com/register
    New tutorials will resume next Friday!
  • I can’t wait for the stable release of ICS for the Nook Color!


    I can’t wait for the stable release of ICS for the Nook Color!