How-to Series: Programming Languages V1: HTML

Spread the love

Sometimes we need to take a step back and reacquaint ourselves with the various aspects of programming languages. Computer programming languages allow us to give instructions to a computer in a language the computer understands. Just as many human-based languages exist, there are an array of computer programming languages that programmers can use to communicate with a computer.

This blog is the first in a series of how-to’s on different programming languages. These blogs will define the language, outline basic functions and usability, while providing instructions on basic coding techniques for the selected programming language.

For the first adaptation, we will be covering HTML.

HTML stands for HyperText Markup Language (** What is the correct way to say this? Seeing multiple versions … Hyper Text, Hypertext, HyperText – please advise for consistency moving forward). It is a core component to front-end development and often the first language learned by designers and web developers. In layman’s terms, HTML is the skeleton of a website; it provides structure to the pages content (text, images, videos). At its heart, HTML is a fairly simple language made up of elements which can be applied to pieces of text to give them different meaning in a document.

The language was first developed in 1990 by Tim Berners-Lee and was used to create and transmit electronic documents amongst learning institutes across the world. Since it’s inception, HTML has evolved significantly and is currently on its 6th iteration: HTML5.

HTML Basics and Structuring a Web Page

HTML is widely considered a simple language to learn. There is a boundless array of free resources available on the internet and the only requisites are a basic computer setup and a text editor. All HTML documents must start with a document type declaration. Additionally, HTML documents will follow a universal structure. The following elements compose the foundation of a web page.

  • The <!DOCTYPE html> is the document type declaration which defines the document as HTML5.
  • The <html> element is the root element of an HTML page
  • The <head> element contains meta information about the document
  • The <title> element specifies a title for the document
  • The <body> element contains the visible page content
  • The <h1> element defines a large heading
  • The <p> element defines a paragraph

Additionally, most HTML elements will be enclosed by a pair of tags: an opening and closing tag.

  • An opening tag <h1> tells the text editor that a specific function will manifest due to the occurrence of the tag.
  • The closing tag </h1> tells the text editor to complete said function.

An example of opening and closing tags would look like this:

<h1> Code Authority is a custom software development agency </h1>.

The opening tag <h1> tells the text editor that the following content is designated as an H1.

The closing tag </h1> indicates to the text editor that that is the end of the H1.

HTML Formatting 101

HTML language can format the appearance of the text on your web page. This can amplify the look of the web page and make it more appealing to viewers, however, too much variety in the text formatting can also look displeasing and may deter a viewer from reading your content or continuing on your page.

Defining text – HTML defines special elements for defining text with a special meaning. For example, HTML uses elements like <b> and <i> for formatting output, like bold or italic text. Other common formatting functions include:

  • <strong> – Important text
  • <em> – Emphasized text
  • <mark> – Marked text
  • <small> – Small text
  • <del> – Deleted text
  • <ins> – Inserted or added text
  • <sub> – Subscript text
  • <sup> – Superscript text
  • <u> – Underline text

Fonts – Additionally, you can change the actual font on your page in a variety of ways:

Font Color – <font color=”#??????”> </font>

Change the color of a few words or a section of text. The 6 question marks represent the hex color code, see this list of colors and codes for some samples

Font Size – <font size=”?”> </font>

Replace the ? with a number from 1 to 7 to change the size of the font. One being the smallest and seven the largest.

Font Size Change – <font size=”+/-?”> </font>

For an immediate change of font size with respect to the font size preceding it, this tag increase or decreases the size of the font by the number you specify.

Change Font Face – <font face=”?”> </font>

To show text in a particular font, use the font name such “Helvetica” or “Arial” or “Courier”. Be aware that using some fancy font from your computer means that the person viewing that page must also have that font installed on their computer too, otherwise it will look totally different to them.

Intermediate HTML Elements and Attributes

Here we will define and provide examples to a few elements and attributes you can include in HTML documents.

Headings – HTML headings are defined with the <h1>, <h2>, <h3>…<h6> tags. The <h1> tag is the most important and each subsequent header element is less significant.

  • <h1> Will Look Like This
  • <h2> Will Look Like This
  • <h3> Will Look Like This
  • <h6> Will Look Like This

Some important items to note when it comes to headings:

  • Users looking at a web page tend to scan quickly to find relevant content, often just reading the headings to begin with (we usuallyspend a very short time on a web page). If they can’t see anything useful within a few seconds, they’ll likely get frustrated and go somewhere else.
  • Search engines indexing your page consider the contents of headings as important keywords for influencing the page’s search rankings. Without headings, your page will perform poorly in terms of SEO (Search Engine Optimization).
  • Severely visually impaired people often don’t read web pages; they listen to them instead. This is done with software called ascreen reader. This software provides ways to get fast access to given text content. Among the various techniques used, they provide an outline of the document by reading out the headings, allowing their users to find the information they need quickly. If headings are not available, they will be forced to listen to the whole document read out loud.

Lists – There are two types of lists, ordered lists and unordered lists. Unordered lists start with the tag <ul> and individual list items are denoted by <li> tag. Ordered lists are denoted by the tag <ol>. Of course, following proper HTML syntax, we must include a closing tag to indicate the end of each element. An example of a list is shown below:

Links – HTML links are hyperlinks that allow you to navigate to another web page or document. A link does not have to be text, it can be an image or any other HTML element. However, the proper syntax for an HTML link is as follow:

An example of a link could be:

<a href=https://codeauthority.com> Visit our Website </a>

Images – Adding images can improve the design and the appearance of a web page – just like picture books we remember from our youth, they tell a story. Images improve your site’s user experience and, at the same time, gives your SEO a bump.

In HTML, images are defined with the <img> tag. The <img> tag is empty, it contains attributes only, and does not have a closing tag. If you are referencing a photo from the web, the src attribute specifies the URL (web address) of the image:

<img src=”url“>

The alt attribute provides an alternate text for an image, if the user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader). The value of the alt attribute should describe the image:

<img src=”img_Napa.jpg” alt=”Grapes in Napa”>

Image style, width and height – The width, height, and style attributes are valid in HTML5.

You can use the style attribute to specify the width and height of an image.

<img src=”img_girl.jpg” alt=”Girl in jacket” style=”width:500px;height:600px;”>

Or, you can use the width and height attributes:

<img src=”img_girl.jpg” alt=”Girl in a jacket” width=”500″ height=”600″>

You can also use images in HTML language from:

  • Images in another folder/sub-folder
  • Images on another server
  • Animated images
  • Images as a link
  • Floating images
  • Image maps with clickable areas
  • Background images

… and so much more

What’s New In HTML5

HTML5 is the latest evolution of the standard that defines HTML. The term represents two different concepts. It is a new version of the language HTML, with new elements, attributes, and behaviors, and a larger set of technologies that allows the building of more diverse and powerful web ites and applications.

New elements introduced with HTML5 include:

  • Semantics: allowing you to describe more precisely what your content is.
  • Connectivity: allowing you to communicate with the server in new and innovative ways.
  • Offline and storage: allowing webpages to store data on the client-side locally and operate offline more efficiently.
  • Multimedia: making video and audio first-class citizens in the Open Web.
  • 2D/3D graphics and effects: allowing a much more diverse range of presentation options.
  • Performance and integration: providing greater speed optimization and better usage of computer hardware.
  • Device access: allowing for the usage of various input and output devices.
  • Styling: letting authors write more sophisticated themes.

There is a whole world of programming languages out there waiting to be utilized. Some you can pick up in just a few short lessons and be on your way to developing your own web page. But other times, we want to turn to the professionals to take this task over, ensuring it’s done right. That’s where Code Authority excels. Our web design and web development service teams know that when people visit your website, that first impression has to “wow” them with an aesthetically-pleasing web design. And, it has to work flawlessly. From the language used to create it to the images and functionality, we take every aspect of the design process into consideration and make your vision a reality.

Let us take a look at your current website with a free evaluation or contact us to discuss creating a brand new website that truly represents you and your brand.

Leave a Reply

WhatsApp chat
Verified by MonsterInsights
jojobetjojobet girişjojobetjojobet girişholiganbetholiganbet girişcasibom girişSweet Bonanzabetebetbetebet girişbetebet güncel girişanadoluslotanadoluslot girişanadoluslot güncel girişmarsbahismarsbahis girişmarsbahismarsbahis girişiptviptv satın aliptv abonelikbetparkbetpark girişbetpark güncel girişbetparkbetpark girişbetpark güncel adresdeneme bonusudeneme bonusu veren sitelerbedava bonus veren sitelerligobetligobet girişligobet güncel girişstarzbetstarzbet girişultrabetultrabet girişultrabet güncelbetgarantibetgaranti girişbetebetjojobetjojobet girişjojobetjojobet giriştaraftarium24betebetimajbetbekabetbekabet girişbekabet twitter giriştelegram下载wps下载有道翻译下载汽水音乐下载汽水音乐betparkbetpark girişbetpark günceltipobettipobet günceltipobet girişwps下载wps官网taraftarium24deneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusutaraftarium24canlı maç izletaraftarium24canlı maç izlejojobetjojobet girişjojobetjojobet girişjojobetjojobet girişjojobetjojobet girişholiganbetholiganbet girişmatbetcasibomcasibom girişcasibom günceldeneme bonusu veren sitelerdeneme bonusudeneme bonusucasinofastjojobetjojobet girişkingroyalbullbahismrkingkralbetesbetteosbetkralbetdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusudeneme bonusukralbetteosbetkralbetbullbahistaraftarium24canlı maç izlebetparkbetpark girişbetpark güncelkolaybetbetparkbetpark girişbetpark güncel girişholiganbetholiganbet girişbetgarantibetgaranti girişbetgaranti güncel adreskolaybetkolaybetsapanca escort bayantaraftarium24canlı maç izlespincospinco giriştaraftarium24canlı maç izlejojobetjojobet girişholiganbetholiganbet girişholiganbetholiganbet girişmatbetmatbet girişbetgarantibetgaranti girişbetgaranti güncel adrescasibomtaraftarium24taraftarium24justin tvtaraftarium24canlı maç izlejojobetjojobet girişdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusudeneme bonusu veren sitelerdeneme bonusunakitbahisnakitbahis giriştürk ifşaGrandpashabetGrandpashabet Güncel GirişGrandpashabet Girişjustin tvdeneme bonusu veren sitelerdeneme bonusuen güvenilir casino sitesideneme bonusu veren sitelerdeneme bonusuen güvenilir casino sitesitophillbettophillbet girişdinamobetdinamobet girişdinamobet güncel girişselcuksportsmaximcasinobetzulajojobetholiganbettaraftarium24taraftariumtaraftarium24 girişmarsbahis telegrammarsbahis resmimarsbahistaraftarium24canlı maç izlejustin tvmaltcasinomaltcasino girişmaltcasino güncel girişligobetligobet girişligobet güncelSuperbetSuperbet girişSüperbetDedebetDedebet girişMaxwinMaxwin girişholiganbetholiganbet girişslot sitelerigüvenilir slot siteleriSweet BonanzaSweet Bonanzaasyabahisasyabahis girişasyabahis güncel girişmaltcasinomaltcasino girişprimebahisprimebahis girişdinamobetdinamobet girişdinamobet güncel girişdinamobetdinamobet girişdinamobet güncel giriştophillbettophillbet girişprimebahisprimebahis girişlunabetdeneme bonusubiabetbiabet girişbiabet güncel girişlink kısaltmakısa linkjustin tvselcuksportsselçuksportsmaç izlecanlı maç izletipobettipobet giriştipobet güncelroyalbetroyalbet resmisuperbetsuperbet girişPalacebetPalacebet girişdamabetdamabet girişmars bahismars bahis giriştaraftarium24SuperbetSuperbet girişSüperbetSüperbet girişMaxwinMaxwin girişbetebetextrabetextrabet girişzbahiszbahis girişmaltcasinomaltcasino girişjojobetjojobet girişjojobet güncel girişjojobetjojobet girişjojobet güncel girişbetparkbetpark girişbetpark erişimbetpascratosroyalbetbankobetdinamobetdinamobet girişdinamobet güncel girişmarsbahis girişmobilbahismobilbahis girişcasibomonwinonwin girişonwinonwin girişonwinonwin girişonwinonwin girişonwinonwin girişonwinspincocasinolevantmarsbahismeritbetmaximcasinokingroyalkingroyalkingroyalmaximcasinomaximcasinocasinofastbetwoonholiganbetdeneme bonusu veren sitelerdeneme bonusuroketbettaraftarium24canlı maç izlevdcasinokolaybetlunabetlunabet girişlunabet güncel girişonwinonwin girişholiganbetholiganbet girişonwinonwin girişonwinonwin girişmrkingholiganbetkolaybetlunabetlunabet girişlunabet güncel girişSweet BonanzaSweet Bonanzamarsbahismarsbahis girişmarsbahis güncel girişbetpasbetkom girişcasinomaxicasinomaxi girişbaskılı bardakbaskılı cam bardakbaskılı kupaegebetegebet girişegebet güncel girişbursa escortbetwoonextrabetextrabet girişqueenbetqueenbet girişqueenbet güncel girişmobilbahismobilbahis girişsuperbetinsuperbetin girişsuperbetinsuperbetin girişzbahiszbahis girişzbahiszbahis girişperabetperabet girişperabetperabet girişspincospinco girişspincospinco girişbetpasbetpas girişkingroyalkingroyal girişpulibetpulibet girişmeritbetdedebetsahabetsahabet girişjojobet güncel girişblackjack siteleriwbahisjojobetjojobet günceljojobet girişibizabetibizabet girişibizabet güncelcratosroyalcratosroyal girişcratosroyal güncelbetmarinobetmarino girişbetmarino güncelmarsbahismarsbahistipobettipobet giriştipobet güncelmarsbahismarsbahis girişmarsbahismarsbahis girişbetwoonmarsbahisspincocratosroyalbetcratosroyalbet girişcratosroyalbet güncel girişcratosroyalbetcratosroyalbet girişcratosroyalbet güncel girişqueenbetqueenbet girişqueenbet güncel girişbetebetbetebet girişbetebet güncel girişmarsbahismarsbahis girişmarsbahis güncel girişdinamobetdinamobet girişdinamobet güncel girişredwincasibom giriştaraftarium24casibomcasibom girişcasibom güncel girişcasibom girişcasibom güncel girişbahiscasinomarsbahiscasinolevantmeritbetbetpuanjojobetjojobet günceljojobetjojobet giriştempobettempobet giriştempobet mobilalobetalobet girişalobet güncelbetebetİzmir Escİzmir Escortİzmir Escort BayanAntalya EscAntalya EscortAntalya Escort Bayanİstanbul Escİstanbul Escortİstanbul Escort Bayanzlotzlot girişspincospinco girişbetwoonbetwoon girişçarkbetçarkbet girişspincospinco girişkazansanakazansana girişJojobetJojobet GüncelJojobet Güncel GirişGrandpashabetGrandpashabetTGrandpashabet Güncel GirişGrandpashabet twitterGrandpashabet Türkiyebetebetdedebetromabetbetebetbetebet güncelbetebet adresimbetebet resmiwhatsapp webjojobet girişvdcasinojustin tvselcuksportsjojobetjojobet girişcasibomcasibom girişjojobetjojobet girişjojobetjojobet girişcasibomcasibom girişjojobetjojobet girişjojobet günceldinamobetdinamobet girişdinamobet güncel girişdinamobetdinamobet girişdinamobet güncel girişdinamobetdinamobet girişdinamobet güncel girişescort sakaryabahsegelbahsegel girişbahsegel güncel1xbet1xbet giriş1xbet günceltümbettümbet giriştümbet güncelbetasusbetasus girişbetpuanbetpuan girişcasinofastvdcasinokocaeli escortkocaeli escort bayankocaeli escbiabetbiabet girişPashagamingPashagaming girişqueenbetqueenbet girişqueenbet güncel girişqueenbetqueenbet girişqueenbet güncel girişbetciobetcio girişbahiscasinobahiscasino girişgirişgünceladresbetmarinobetmarino girişbetwoonbetwoon girişspincospinco girişspincospinco girişmarsbahismarsbahis girişbetwoonbetwoon girişmarsbahismarsbahis girişcasibomcasibom girişmarsbahismarsbahis girişhititbetjojobetjojobet girişjojobet güncel girişbetebetmeritbetmeritbet girişmeritbetmeritbet girişsuperbetsuperbet girişleograndleogrand girişantalya escortantalya escort bayanbetgitmeritbetmeritbet girişiptv satın aliptv abonelikdinamobetdinamobet girişdinamobet güncel girişdinamobetdinamobet girişdinamobet güncel girişvegasslotsahabetalobetalobet girişalobet güncelhit botgoogle hit bothit botucasipolnorabahisnorabahis girişnorabahis güncelnorabahisnorabahis girişnorabahis güncelalobetalobet girişalobet güncelcasibom girişiptv satın aliptv abonelikgirişgirişbiabetbiabet girişbiabet güncel girişbiabetbiabet girişbiabet güncel girişbiabetbiabet girişbiabet güncel girişgirişgüncel girişqueenbetqueenbet güncel girişqueenbet girişmeritbetmeritbet girişoslobetoslobet girişoslobet günceltümbettümbet giriştümbet güncelpadişahbetsetrabetvirüsbetvirüsbet girişvirüsbet güncelsweet bonanzasweet bonanza oynaalobetalobet girişalobet güncelnorabahisnorabahis girişnorabahis güncelbetyapbetyap girişbetyap güncelcasibomcasibom girişbetistbetist girişbetist güncel girişmatbetmatbetdeneme bonusudeneme bonusu veren sitelerkingroyalkingroyal girişjupiterbahiskavbetgalabetrestbetcasibomcasibom girişcasibomcasibom girişkingroyalkingroyal girişkingroyalkingroyal girişganobetjasminbetcasibomcasibom girişmarsbahismarsbahis girişmarsbahismarsbahis girişganobetcasibom güncel girişcasibom girişcasibom girişcasibom güncel girişcasibomcasibomcasibom girişcasibom güncel girişcasibomcasibom girişcasibom güncel girişmatbetmatbet girişbetebetçarkbetçarkbet girişbetpashititbetbetpasmatbetmeritbetmeritbet girişmeritbetmeritbet girişbetebetromabetromabet girişbetorder1xbet1xbet giriş1xbet güncel1xbet1xbet giriş1xbet güncel1win1win giriş1win güncel1win1win giriş1win güncelbetyapbetyap girişbetyap günceloslobetoslobet girişoslobet güncelbahsegelbahsegel girişbahsegel güncelleograndcratosslotcratosslotbetgitbetgitstarzbetstarzbet güncelbetorderbetorderprensbetprensbetkalebetextrabetextrabet girişextrabet güncel girişavrupabetavrupabetngsbahismislibethilbetbahisbudurbetpastaraftarium24taraftarium24extrabetpokerklaspokerklas girişpokerklas güncel girişcasinomhubcasinomhubvegasslotvegasslotcratosslotcratosslotextrabetjojobetjojobetmatbetmatbetbetcibetciantikbetjojobet girişatlasbetavrupabetavrupabettimebetsmartbahisextrabetsmartbahisultrabetultrabetvaycasinovaycasino girişextrabetextrabet girişmakrobetmeritbetmeritbet girişmeritbetmeritbet girişromabetmatbetpulibetjojobetjojobet girişBetpasBetpas Girişimajbetkavbetbetsatbetsat girişsüperbetinsüperbetin girişbetpuanbetpuan girişpasacasinobetpuanbetpuan girişvaycasinovaycasino girişbetparkbetpark girişkralbetvirüsbetvirüs betvirüsbet girişmarsbahismarsbahis girişbetistbetist girişextrabetextrabet girişstarzbetstarzbet girişstarzbet ödemejojobetjojobet girişantalya escortantalya bayan escortantalya escsuperbetinsuperbetin girişkavbetkavbet girişcasibomcasibom girişmarsbahissuperbetintempobettempobet casinotempobet girişcasibomcasibom girişkralbetkralbet girişrestnetcasibomcasibom girişsuperbetinsüperbetinsuperbetinsüperbetinbetofficebetoffice girişcasibomcasibom girişbetciobetcio girişjojobetjojobet girişjojobet güncel girişjojobetjojobet girişjojobet güncel girişjojobetjojobet girişjojobet güncel girişcasibomcasibom girişcasibom güncel girişcasibomcasibom girişvaycasinovaycasino girişvaycasino güncel girişoslobetoslobet girişoslobet güncel girişoslobetoslobet günceloslobet güncel girişcasibomcasibom girişvaycasinovaycasino girişcasibomcasibom girişefesbetefesbet girişcasibomcasibom girişcasibomcasibom girişjojobetjojobet girişjojobetjojobet girişmavibetsahabetsahabet girişsahabet güncel girişteosbetteosbet girişbetturkeybetturkey girişbetturkey güncel girişgoldenbahisgoldenbahis girişfixbetfixbet girişfixbet güncel giriştipobettipobet girişmavibet girişbetturkeybetturkey girişbetturkey güncel girişbetturkeybetturkey girişbetturkey güncel girişhitbethitbet girişmersobahisbetciomavibetimajbetimajbet girişbetgarantibetgaranti girişmeritcasinomeritcasino girişcasibomefesbetefesbet girişartemisbetholiganbetpusulabetstarzbetdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusu veren sitelerdeneme bonusu veren sitelersonbahissonbahis girişmarsbahissonbahissonbahis girişmatbetimajbetpusulabetpusulabet girişvdcasinosuperbetincasibomcasibom girişsonbahissonbahis girişsonbahissonbahis girişTelegram中文版官网avvabetbetboxdedebetenbetbetcigalabetgoldenbahisharbiwinhayalbahiskingbettingjojobet güncel girişklasbahismedusabahiscasinomilyonngsbahisnoktabetparmabetpiabellacasinopoliwinpolobetprensbetramadabetrestbetcasinoroysrulobetsafirbetsmartbahissohobetsupertotobetsüpertotobetcasibomcasibom girişkingroyalkingroyal girişkingroyalkingroyal girişmatbetmarsbahistulipbettulipbet günceltrendbettrendbet giriştrendbet güncel giriştrendbetpasacasinobetgarantitrendbet girişBetpasimajbetmatbetsekabetpusulabetgrandpashabetparobetkavbetmavibetkalebetavvabetrestbetcapitolbetcapitolbet girişparibahisbetorderstarzbetstarzbet girişstarzbet güncelbetorderbetixirdeneme bonusudeneme bonusu veren sitelertrendbet güncel girişcratosslottrendbetjojobetjojobet girişcasiveracasivera girişlidyabetlidyabet girişromabetromabet girişmarsbahismarsbahis girişavrupabetavrupabet girişmavibetmavibet girişparibahiscratosslotbetciobetcio girişcasibomcasibom girişcasibom güncel girişcasibombetvoleultrabetromabetikimisli汽水音乐官网casinomhubcasinomhubbahsegelbahsegelgrandpashabetgrandpashabet girişmarsbahisholiganbetimajbetvegasslotvegasslotpusulabetbetciosamsun escortsamsun escort bayansamsun escwhatsapp webfixbetfixbetdinamobetdinamobet girişdinamobet güncel girişgalabetgalabet girişgalabet güncel girişimajbet girişimajbetimajbet güncel girişcasibomcasibom girişdeneme bonusu veren sitelerdeneme bonusu veren sitelerimajbetmatbetsekabetpusulabetgrandpashabetholiganbetkalebettitobetmegabahisodeonbetrestbetmavibetbetpascapitolbet güncel girişvaycasinovaycasino girişmavibetmavibet girişmarsbahismarsbahis girişmarsbahis güncel girişmobilbahismobilbahis girişkralbetkralbet girişkralbetkralbet girişvaycasinovaycasino girişpokerklaspokerklas girişngsbahisngsbahiskavbetnakitbahisdeneme bonusu veren sitelerdeneme bonusubahis sitelerideneme bonusu veren sitelerdeneme bonusucasibomcasibom girişcasibom güncelbetyapbetyap girişbetyap güncelcratosroyalbelbetperbetperhayalbahispulibetmeritbetmeritbet girişalobetalobet girişalobet güncelcratosroyalbelmatadorbetmatadorbetiddia tahminiddia tahminleri