Songs, Music Blogs & Other Blog Topics

Category: Internet

Stap 19 – meer meta tags

Laatste update: 7  maart 2019 META-tags kun je voor meer gebruiken, dan alleen een vermelding in zoekmachines. Al deze tags plaats je in de HEAD-tag. Auteur en Copyright Je kunt duidelijk maken wie de auteur is van de website <meta name=”author” content=”Nora Tol” /> Tevens kun je een copyright-instelling toevoegen: <meta name=”copyright” …

Wat is CSS?

Met gebruik van CSS in een HTML document kun je heel makkelijk een stijl bepalen voor het hele document. Om je een idee te geven van hoe het werkt, laat ik hier wat voorbeelden zien. <HTML> <HEAD> <TITLE>Cascade Style Sheet test</TITLE> <STYLE TYPE=”text\css”> <!– td { font-family: arial; font-size: 9pt; font-weight: bold; …

Wat is de W3C standaard?

Het World Wide Web Consortium (W3C) is een internationaal consortium van webprofessionals en gebruikers. Zij ontwikkelen standaard richtlijnen binnen de meest gebruikte programmeertalen op het web. Daarin leggen ze vast hoe deze taal gebruikt moet worden. Dit wordt ondersteund door alle browsers. Ook binnen HTML bestaat er een W3C standaard. …

Step 1 – How to begin

Last update: February 15, 2019 Starting an HTML file is easy. The first thing we need to define, is the fact that we’ll be ‘programming’ in HTML. You do this as followed: Type this in Notepad: <html> </html> With <html>, you open your document and state that whatever is to …

Step 2 – Head

Last update: February 15 2019 An HTML document has two parts: A Head and a Body. The Head usually contains a title that appears at the top of a browser tab. The Body contains all the details about the lay out. This shapes the website that becomes visible in the …

Step 3 – Body

Last update: February 15 2019 Now, let’s start designing the lay-out of the web page by creating the Body of the HTML document. The BODY-element needs to be opened and closed. Anything written in between will show in the browser window. BTW, you’ll be learning 3 things in this step: …

Step 4 – Text

Last update: February 15 2019 What’s a website without text? In this step, you’ll learn: How to add text How to add line breaks (enters) and paragraphs How to create additional white space in sentences Adding Text Whatever you type, in between the BODY-tag, becomes visible in the browser window. …