HTML + CSS: Difference between revisions

From XPUB & Lens-Based wiki
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
* https://pulsar-edit.dev/ (fork of Atom)
* https://pulsar-edit.dev/ (fork of Atom)
* https://notepad-plus-plus.org/ (Windows only)
* https://notepad-plus-plus.org/ (Windows only)
* https://www.vim.org/  
* https://www.vim.org/ (terminal based)
* https://www.gnu.org/software/emacs/
* https://www.gnu.org/software/emacs/ (terminal based)
* https://www.nano-editor.org/ (terminal based)


==HTML==
==HTML==
Line 37: Line 38:
}
}
</syntaxhighlight>
</syntaxhighlight>
* a code block like the one above: is a '''rule'''
* <code>body</code>: is a '''selector'''
* <code>background-color</code>: is a '''property'''
* <code>pink</code>: is a '''value'''


==W3C==
==W3C==
Line 80: Line 86:
* 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
[[Category:Cookbook]]
[[Category:PagedMedia]]

Revision as of 11:24, 6 October 2023

code editors

HTML

HyperText Markup Language

<head>
<body>
<h1></h1>
<p></p>
<img>

CSS

Cascading Style Sheets

body{
    background-color: pink;
    color: green;
    margin: 100px;
}
  • a code block like the one above: is a rule
  • body: is a selector
  • background-color: is a property
  • pink: is a value

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