Skip to content

senya/web-intro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web-intro

HTML

Введение

  • HyperText Markup Language

  • 1986-1991 годы, ЦЕРН, Женева, Швейцария, Тим Бернерс-Ли (url, //)

  • Tег

    • открывающий
    • закрывающий (не у всех)
    • аттрибуты
  • основы

    • a
    • p
    • br
  • Общая структура

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>

http://www.w3schools.com/html/default.asp

CSS

<font size="2" color="blue"><b>This is some text!</b></font>

<table cellspacing="2" border="1" cellpadding="5" width="600">
...
</table>
  • плохо.

CSS:

  • Cascading Style Sheets

правило:

селектор, селектор {
    свойство: значение;
    свойство: значение;
    свойство: значение;
}
.note {
   color: red; 
   background-color: yellow; 
   font-weight: bold; 
}

https://ru.wikipedia.org/wiki/CSS

Ajax

  • Asynchronous Javascript and XML
  • XMLHttpRequest

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published