×
          
              
          
      
      Clear all filters including search bar
          
        Valeri Tandilashvili's Personal Professional Blog
      
    200 OK201 Created204 No Content304 Not Modified400 Bad Request401 Unauthorized403 Forbidden404 Not Found409 Conflict500 Internal Server Error<link rel="stylesheet" href="responsive.css" media="screen and (max-width: 900px)"><link>@media screen and (max-width: 900px) {
    /* conditional CSS */
}<input type="checkbox" id="vehicle1" name="vehicle[]" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
<input type="checkbox" id="vehicle2" name="vehicle[]" value="Car">
<label for="vehicle2"> I have a car</label><br>namethe rootXML treeroot elementchild elements<root>
  <child>
    <subchild>.....</subchild>
  </child>
</root>parentchildsiblingParentsChildrenSiblingshttps://www.xmlviewer.org/Books<books>
  <book category="cooking">
    <title lang="en">The goals</title>
    <author>Giada De Laurentiis</author>
    <year>2007</year>
    <price>30.00</price>
  </book>
  <book category="children">
    <title lang="en">12 rules for life</title>
    <author>J K. Rowling</author>
    <year>2002</year>
    <price>29.99</price>
  </book>
  <book category="web">
    <title lang="en">The richest man in Babilon</title>
    <author>Erik T. Ray</author>
    <year>2001</year>
    <price>39.95</price>
  </book>
</books>{ "name": "John" }{ name: "John" }{ 12: "John" }JSON- a string
- a number
- an object (JSON object)
- an array
- a boolean
- nullJavaScript- a function
- a date
- a symbol
- undefinedJSON{ "name":"John" }JavaScript{ name: 'John' }JSON.parse(str)let str = '{"title":"Conference","date":"2017-11-30T12:00:00.000Z"}';
let meetup = JSON.parse(str);
document.write( meetup.date.getDate() ); // Error!meetup.dateDateJSON.parseDateJSON.parsedateDatelet str = '{"title":"Conference","date":"2017-11-30T12:00:00.000Z"}';
let meetup = JSON.parse(str, function(key, value) {
  if (key == 'date') return new Date(value);
  return value;
});
alert( meetup.date.getDate() ); // now works!Metadata<base><link><meta><noscript><script><style><title>Embedded<audio><video><canvas><iframe><img><math><object><svg>Interactive<a><audio><video><button><details><embed><iframe><img><input><label><object><select><textarea>Heading<h1><h2><h3><h4><h5><h6><hgroup>Phrasing<img><span><strong><label><br /><small><sub>Route::resource('posts', 'PostsController');GETpostsPOSTpostsGETposts/createGETposts/{post}PUTposts/{post}DELETEposts/{post}GETposts/{post}/edit.container {
    background: url(../images/tile.png) left bottom repeat-x,  #FFF url(../images/tile.png) left top repeat-x;
}XML Attributename/valueone or more<a href = "http://www.applications.ge/">Applications.ge</a>hrefattribute namehttp://www.applications.geattribute valueHREFhref<?xml version="1.0"?>
<student>
    <a href="http://www.applications.ge/" hreF="HTTP://applications.ge/">Applications.ge</a>
</student><?xml version="1.0"?>
<student>
    <a href="http://www.applications.ge/" href="HTTP://applications.ge/">Applications.ge</a>
</student>error on line 3 at column 73: Attribute href
 redefined<?xml version="1.0"?>
<student>
    <a "href"="http://www.applications.ge/">Applications.ge</a>
</student>error on line 3 at column 8: error parsing attribute name
 '"<?xml version="1.0"?>
<student>
    <a href=http://www.applications.ge/>Applications.ge</a>
</student>error on line 3 at column 13: AttValue: " or ' expected