HTML& CSS for Beginners
eBook - ePub

HTML& CSS for Beginners

Learn the Fundamentals of Computer Programming

Jo Foster

Buch teilen
  1. English
  2. ePUB (handyfreundlich)
  3. Über iOS und Android verfügbar
eBook - ePub

HTML& CSS for Beginners

Learn the Fundamentals of Computer Programming

Jo Foster

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist HTML& CSS for Beginners als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu HTML& CSS for Beginners von Jo Foster im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Computer Science & Programming in HTML. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
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...

Inhaltsverzeichnis