HTML& CSS for Beginners
eBook - ePub

HTML& CSS for Beginners

Learn the Fundamentals of Computer Programming

Jo Foster

Condividi libro
  1. English
  2. ePUB (disponibile sull'app)
  3. Disponibile su iOS e Android
eBook - ePub

HTML& CSS for Beginners

Learn the Fundamentals of Computer Programming

Jo Foster

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

With so much information about web development and online coding tutorials out there, it can be difficult to know where to start.

Many guides, websites and books can be confusing and don't make it easy for those starting out. HTML & CSS For Beginners fills in the gap and provides a great place to start learning something new.

Using our bestselling, straightforward, step-by-step, visual approach, learn to

Understand HTML tags and elements

Understand CSS selectors

Style tables, lists, and forms

Style text, headings and paragraphs

Learn to use web safe fonts and google fonts in your web pages

Insert images, audio and video into web pages

Align your content and build site structure using new HTML5 elements

Learn to harness the power of CSS to style your text and build your site layout

Understand web servers and how the serve pages to web browsers

Familiarise yourself with HTML & CSS syntax with appendix reference guides to help you write your code.

Techniques are illustrated step-by-step using full color diagrams and screen prints throughout together with clear and concise tutorials from an established expert in the field.

If you want to learn to code quickly and easily, this is the guide you need.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
HTML& CSS for Beginners è disponibile online in formato PDF/ePub?
Sì, puoi accedere a HTML& CSS for Beginners di Jo Foster in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Computer Science e Programming in HTML. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2022
ISBN
9781913151706

Getting Started with HTML

In this chapter we’ll build a very simple web page using common text formatting tags, we’ll add some images, links, tables, and lists.
This will provide you with a foundation and basic structure of a web page using HTML, which you can build on later.
In the chapter we’ll walk through the process from blank, and build a page using the different tags.

Setting Up

For the exercises in this chapter we will be using notepad and a web browser.
First open up your file explorer, go to your documents folder and create a new folder called public_html.
Next, open up your text editor. I’m going to use notepad. Go to ‘file’ and click ‘save as’.
From the dialog box, navigate to your ‘documents’ folder and select public_html.
In the ‘file name’ field, enter the name of your web page. Make sure the file extension is .html
index.html
Open up your file explorer, navigate to your documents folder, then public_html, as before, and double click index.html to open it in your web browser.
Index.html is the default file that is usually loaded when navigating to a website address.
Arrange your windows side by side, put notepad on the left and your web browser next to it on the right; as they are on the opposite page. You may need to resize your windows.
Every time you make any changes to your file in notepad, you’ll need to save the file, then click the refresh icon in your web browser.
Lets get started.

Tags for Formatting Text

As you can see in the illustration below, the text in the <title> tags appear on the title tab in the web browser, and anything between the <body> tags appear in the browser window.
HTML tags label the pieces of your web page, such as headings, text formatting with bold or italic, paragraphs, images, links, and tables.
Lets have a look at some simple formatting tags
Main Heading Style <h1>...</h1>
Subheading Style <h2>...</h2>
Bold Text <b>...</b>
Italic Text <i>...</i>
Paragraph Text <p>...</p>
Most tags come in pairs and you’ll need to surround the piece of text or word using the start and end tags.
For ex...

Indice dei contenuti