<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://mynotes.babies.vn/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://mynotes.babies.vn/feed.php">
        <title>my notes - webdesign</title>
        <description></description>
        <link>http://mynotes.babies.vn/</link>
        <image rdf:resource="http://mynotes.babies.vn/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-17T06:51:55+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:corel&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:gridandguides&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:howbrowserwork&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:html-and-css&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:html5-and-javascript&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:htmloptionsforslices&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:photoshop&amp;rev=1667060147&amp;do=diff"/>
                <rdf:li rdf:resource="http://mynotes.babies.vn/doku.php?id=webdesign:slicetool&amp;rev=1667060147&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://mynotes.babies.vn/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>my notes</title>
        <link>http://mynotes.babies.vn/</link>
        <url>http://mynotes.babies.vn/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:corel&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>corel</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:corel&amp;rev=1667060147&amp;do=diff</link>
        <description>Corel

Some Basic Experiences in Corel

Edit Objects in Corel

Basic Steps to Edit Objects in Corel: Default all objects in corel will be grouped eachother, so we need to ungroup them before Edit

	*  Step1: Open corel file which you want to edit
	*</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:gridandguides&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>gridandguides</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:gridandguides&amp;rev=1667060147&amp;do=diff</link>
        <description>Grid and Guides

refer: 
&lt;http://helpx.adobe.com/en/photoshop/using/grid-guides.html&gt;

Show or hide a grid, guides, or smart guides

Do one of the following:

	*  Choose View &gt; Show &gt; Grid.
	*  Choose View &gt; Show &gt; Guides.
	*  View &gt; Show &gt; Smart Guides.
	*  Choose View &gt; Extras. This command also shows or hides layer edges, selection edges, target paths, and slices.</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:howbrowserwork&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>howbrowserwork</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:howbrowserwork&amp;rev=1667060147&amp;do=diff</link>
        <description>How Browser Work and HTML Language

refer:
howbrowserswork

Rendering engines

The main flow



Main flow examples



Figure: Webkit main flow


Figure: Mozilla&#039;s Gecko rendering engine main flow

Parsing and DOM tree construction

HTML Parser and DOM

The job of the</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:html-and-css&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>html-and-css</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:html-and-css&amp;rev=1667060147&amp;do=diff</link>
        <description>HTML

Layout with &lt;div&gt; tag

refer:

The render tree relation to the DOM tree

positioning scheme

display blocks using &lt;div&gt; tag with none property float

HTML code:


&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Example&lt;/title&gt;
&lt;style&gt;
* {
  margin:0;
}

body {
  text-align:center;
}

#wrapper {
  margin:auto;
  width:300px;
}

#header {
  height:30px;
  background:#99CC66;
}
#body_left {
  width:20%;
  height:100px;
  background:#FF9900;
}

#body_main {
  width:80%;
  height:100px;
  background:#99CCFF;
}
#footer {
…</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:html5-and-javascript&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>html5-and-javascript</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:html5-and-javascript&amp;rev=1667060147&amp;do=diff</link>
        <description>HTML5 and Javascript

Understand about HTML5

HTML5 Browser Support:

	*  &lt;http://www.w3schools.com/html/html5_browsers.asp&gt;

HTML5 browser support:

	*  HTML5 is supported in all modern browsers.
	*  In addition, all browsers, old and new, automatically handle unrecognized elements as inline elements</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:htmloptionsforslices&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>htmloptionsforslices</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:htmloptionsforslices&amp;rev=1667060147&amp;do=diff</link>
        <description>HTML Options Slices

Refer: &lt;http://helpx.adobe.com/photoshop/using/html-options-slices.html&gt;

Display the Slice Options dialog box

Do one of the following:

	*  Double-click a slice with the Slice Select tool . (If the tool isn’t visible, hold down the Crop or Slice tool.)
	*  With the Slice Select tool active, click the Slice Options button  in the options bar. This method is not in the Save For Web &amp; Devices dialog box.</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:photoshop&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>photoshop</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:photoshop&amp;rev=1667060147&amp;do=diff</link>
        <description>Photoshop

Install and Crack Photoshop

Hướng dẫn cài đặt và Crack Adobe Photoshop CS6:

	*  Cài đặt với chế độ là Trial Mode ,
	*  Nếu phải Sign In thì các bạn chọn Create New Account rồi đăng ký 1 cái account
	*</description>
    </item>
    <item rdf:about="http://mynotes.babies.vn/doku.php?id=webdesign:slicetool&amp;rev=1667060147&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-29T16:15:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>slicetool</title>
        <link>http://mynotes.babies.vn/doku.php?id=webdesign:slicetool&amp;rev=1667060147&amp;do=diff</link>
        <description>Slicing Web Pages

refer: 
&lt;http://helpx.adobe.com/en/photoshop/using/slicing-web-pages.html&gt;

&lt;http://thesiteslinger.com/blog/do-we-still-slice-psds/&gt;

Introduce about slicing web pages

Understand about slices

Slices divide an image into smaller images that are reassembled on a web page using an HTML table or CSS layers. By dividing the image:

	*  you can assign different</description>
    </item>
</rdf:RDF>
