Please enable JavaScript.
Coggle requires JavaScript to display documents.
FRONT-END WEB DEVELOPMENT (CSS (CSS Selectors (class (Selects all elements…
FRONT-END WEB DEVELOPMENT
HTML
tags
html
body
table
tr
th
tfoot
tbody
thead
HTML`de bu elementler ile tablo olusturulur. thead,tbody,tfoot yardimi ile HTML sayfasindan direk tablo bilgileri alinabilir.
td
em
Emphasized Text
dfn
Mark up the defining instance of a term
cite
defines the title of a work in HTML5
ins
inserted part in a text
del
defines deleted text.
acronym
simentic tag, acronym
details
specifies the details which user can hide or view on demand.
summary
adds visible heading
q
short quotation
blockquote
specifies a text quated from another source.
pre
displays text in a fixed-width font (usually Courier), and it preserves both spaces and line breaks.
code
style the text as courier
mark
highlight
sub
subcript
sup
superscript
picture
img
specifies image source and used for responsive design.
figure
New in HTML5, specifies self-contained content, like illustrations, diagrams, photos, code listings, etc.
audio
defines audio sources.
video
specifies a video stream
abbr
marked up the abbreviation
h1-h6
headings
strong
bold the text. Semantic Html Element.
i
italic
br
break line
b
bold
ol
ordered list
li
defines a list item.
ul
unordered list
li
defines a list item.
span
colors a part of a text.
p
paragraph
a
anchor. GIves link.
div
defines a division in html
dl
dd
Description list
dt
head
title
HTML sayfasina baslik verir
meta
provides metada data about the HTML document. Web designers, browsers, search engines, etc. uses these data.
style
The <style> element is used to add CSS style rules to an HTML document. The element is expected to appear in the document <head>, but will also render acceptably when used in the <body> of the document.
link
The <link> element is used to define a relationship between an HTML document and an external resource. This element is most commonly used to define the relationship between a document and one or more external CSS stylesheets.
CSS
Colors
Background
Borders
Margins
Padding
Height/Width
Box Model
CSS Selectors
class
Selects all elements with class="classname"
id
Selects the element with id="IDname"
*
Selects all elements
tag
Selects the elements like p, div