HTML + CSS: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 18: Line 18:
  <nowiki><h1></nowiki>
  <nowiki><h1></nowiki>
  <nowiki><img></nowiki>
  <nowiki><img></nowiki>
* inspector
* commonly used elements
* linking to each other
* adding media (images, video, audio)


==CSS==
==CSS==


Cascading Style Sheets
Cascading Style Sheets
<syntaxhighlight lang="css">
body{
    background-color: pink;
    color: green;
    margin: 100px;
}
</syntaxhighlight>


==W3C==
==W3C==
Line 49: Line 52:
* https://developer.mozilla.org/en-US/docs/Web/HTML
* https://developer.mozilla.org/en-US/docs/Web/HTML
* https://developer.mozilla.org/en-US/docs/Web/CSS
* https://developer.mozilla.org/en-US/docs/Web/CSS
==upload your HTML page to a server==
* [https://wiki.filezilla-project.org/Main_Page FileZilla]


==XPUB web pages==
==XPUB web pages==
Line 69: Line 68:
* https://hub.xpub.nl/breadcube/hyperworld/
* https://hub.xpub.nl/breadcube/hyperworld/


==pads==
==Pad traces==


* https://pad.xpub.nl/p/SI19-prototyping-2 HTML + CSS intro
* https://pad.xpub.nl/p/SI19-prototyping-2 HTML + CSS intro
* https://pad.xpub.nl/p/SI19-prototyping-3 HTML + CSS continued
* https://pad.xpub.nl/p/SI19-prototyping-3 HTML + CSS continued
* https://pad.xpub.nl/p/SI19-prototyping-4 CSS Flex, Grid, Transition, Animation
* https://pad.xpub.nl/p/SI19-prototyping-4 CSS Flex, Grid, Transition, Animation

Revision as of 11:13, 26 September 2023

code editors

HTML

HyperText Markup Language

<head>
<body>
<h1>
<img>

CSS

Cascading Style Sheets

body{
    background-color: pink;
    color: green;
    margin: 100px;
}

W3C

W3C is the Web consortium that make decisions about web standards.

They write very heavy documentation. This documentation is mostly used by people making web browsers.

https://www.w3.org/

tutorials & zines

documentation

XPUB web pages

first pages XPUB1 2022-2024

hyperworld

Pad traces