1 / 39

آموزش طراحی وب سایت جلسه اول – معرفی مفاهیم اولیه

آموزش طراحی وب سایت جلسه اول – معرفی مفاهیم اولیه. تدریس طراحی وب برای اطلاعات بیشتر تماس بگیرید تاو شماره تماس: 09125773990 09371410986 پست الکترونیک : TargetLearning@gmail.com. Web Design Training. Web Pages: Static Web Page Dynamic Web Page. Web Pages: Static Web Page : HTML Page

hesper
Download Presentation

آموزش طراحی وب سایت جلسه اول – معرفی مفاهیم اولیه

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. آموزش طراحی وب سایتجلسه اول – معرفی مفاهیم اولیه تدریس طراحی وببرای اطلاعات بیشتر تماس بگیرید تاوشماره تماس: 0912577399009371410986پست الکترونیک : TargetLearning@gmail.com

  2. Web Design Training

  3. Web Pages: Static Web Page Dynamic Web Page

  4. Web Pages: • Static Web Page : HTML Page • Dynamic Web Page

  5. HTML Hyper TextMarkupLanguage Example

  6. <html><body><h1> My First Heading </h1></body> </html> Run

  7. <html><body><a href=“http://www.asp.net”><h1> My First Heading </h1></a></body> </html> Run

  8. Web Pages: • Static Web Page • Dynamic Web Page How to work ?

  9. Client Request

  10. Receive information and send to Data base

  11. Send to web server

  12. Send HTML file to client

  13. ❑ HTML and XHTML ❑ CSS ❑ JavaScript

  14. Tags and Elements XHTML tags should always be written in lowercase letters.

  15. <html> <head> <title>Popular Websites: Google</title> </head> <body> <h1>About Google</h1> <p>...</p> <p>Google’s mission is to organize the world’s information and make it universally accessible and useful.</p> <p>Its founders Larry Page and Sergey Brin started Google at Stanford University.</p> </body> </html>

  16. Separating Heads from Bodies The <head> element: Often referred to as the head of the page, this contains information about The <body> element: Often referred to as the body of the page, this contains the information you

  17. Attributes Tell Us About Elements <html> <head> <title>Popular Websites: Google</title> </head> <body> <h1>About Google</h1> <p>Google is best known for its search engine, although Google now offers a number of other services.</p> <p>Google’s mission is to organize the world’s information and make it universally accessible and useful.</p> <p>Its founders Larry Page and Sergey Brin started Google at Stanford University.</p> <p><a href=”http://www.Google.com/”>Click here to visit Google’s Website.</a></p> </body> </html>

  18. Creating Headings Using hn Elements

  19. <h1>Basic Text Formatting</h1> <p> ….</p> <h2>Whitespace and Flow</h2> <p> ...</p> <h2>Creating Headings Using hn Elements</h2> <p> ….</p>

  20. The align Attribute

  21. <h1 align=”left”>Left-Aligned Heading</h1> <p>This heading uses the align attribute with a value of left.</p> <h1 align=”center”>Centered Heading</h1> <p>This heading uses the align attribute with a value of center.</p> <h1 align=”right”>Right-Aligned Heading</h1> <p>This heading uses the align attribute with a value of right.</p>

  22. Creating Line Breaks Using the <br /> Element

  23. Presentational Elements • The <b> Element • The <i> Element • The <u> Element (deprecated) • The <s> and <strike> Elements (deprecated) • The <sub> Element • The <big> Element • The <small> Element • The <hr /> Element

  24. ? • <em> and <strong> • <blockquote>, <cite>, and <q> • <abbr>, <acronym>, and <dfn> for • <code>, <kbd>, <var>, and <samp> • <address • <em> • <strong> • <abbr> • <acronym>

  25. The following word uses a <b>bold</b> typeface. • The following word uses an <i>italic</i> typeface. • ….

  26. Written on the 31<sup>st</sup> February. • The EPR paradox<sub>2</sub> was devised by Einstein, Podolsky, and Rosen. • The following word should be <big>bigger</big> than those around it. • The following word should be <small>smaller</small> than those around it. • <hr />

  27. Lists • Unordered lists: which are like lists of bullet points • Ordered lists: which use a sequence of numbers or letters instead of bullet points • Definition lists: which allow you to specify a term and its definition

  28. Using the <ul> Element to Create Unordered Lists <ul> <li>Bullet point number one</li> <li>Bullet point number two</li> <li>Bullet point number three</li> </ul>

  29. Ordered Lists <ol> <li>Point number one</li> <li>Point number two</li> <li>Point number three</li> </ol>

  30. <ol type=”i”> <li>This is the first point</li> <li>This is the second point</li> <li>This is the third point</li> </ol>

  31. <ol type=”i” start=”4”> <li>Point number one</li> <li>Point number two</li> <li>Point number three</li> </ol>

  32. Definition Lists Dt definition title Dc dominion content

  33. <dl> <dt>Unordered List</dt> <dd>A list of bullet points.</dd> <dt>Ordered List</dt> <dd>An ordered list of points, such as a numbered set of steps.</dd> <dt>Definition List</dt> <dd>A list of terms and definitions.</dd> </dl>

  34. Nesting Lists <ol type=”I”> <li>Item one</li> <li>Item two</li> <li>Item three</li> <li>Item four <ol type=”i”> <li>Item 4.1</li> <li>Item 4.2</li> <li>Item 4.3</li> </ol> </li> <li>Item Five</li> </ol>

  35. <html> <head> <title>onMouseOver</title> </head> ….. <html>

  36. <body> <p align="center" dir="rtl">&nbsp;</p> <form> <p align="center"> <button id="testbutton" onMouseOver="alert('This is onMouseOver event.')">move your mouse over here </button> </p> </form> <p align="left" dir="rtl">&nbsp;</p> </body> </html>

  37. The NED

More Related