290 likes | 436 Views
به نام خدا . کلاس عملی درس مهندسی نرم افزار. جلسه ی پنجم. برنامه ی امروز . چند منبع خوب. مقدمات HTML و CSS. نمونه ی عملی . جلسه ی گذشته . جلسه ی گذشته . برنامه ی امروز . چند منبع خوب. مقدمات HTML و CSS. نمونه ی عملی. جلسه ی گذشته . . HTML Basics. HTML Basic Document.
E N D
به نام خدا کلاس عملی درس مهندسی نرم افزار جلسه ی پنجم
برنامه ی امروز چند منبع خوب مقدمات HTML و CSS نمونه ی عملی جلسه ی گذشته
برنامه ی امروز چند منبع خوب مقدمات HTML و CSS نمونه ی عملی جلسه ی گذشته
HTML Basic Document <html> <head> <title>Title of document goes here</title> </head> <body> Visible text goes here...</body> </html>
Heading Elements: <h1>Largest Heading</h1> <h2> . . . </h2><h3> . . . </h3><h4> . . . </h4><h5> . . . </h5> <h6>Smallest Heading</h6>
Text Elements <p>This is a paragraph</p><br/><hr/> <em>This text is emphasized</em><strong>This text is strong</strong><code>This is some computer code</code> <b>This text is bold</b><i>This text is italic</i>
Links <a href="http://www.example.com/">Link-text goes here</a> <a href="http://www.example.com/"><img src="URL" alt="Alternate Text" /></a> <a href="mailto:webmaster@example.com">Send e-mail</a> <a name="tips">Tips Section</a><a href="#tips">Jump to the Tips Section</a>
Layout <div></div> <span></span>
Lists • Unordered list <ul> <li>Item</li> <li>Item</li></ul> • Ordered list <ol> <li>First item</li> <li>Second item</li></ol>
Tables <table border="1"> <tr> <th>Tableheader</th> <th>Tableheader</th> </tr> <tr> <td>sometext</td> <td>sometext</td> </tr></table>
Forms <form action="http://www.example.com/test.asp" method="post/get"> <input type="text" name="email" size="40" maxlength="50" /> <input type="password" /> <input type="checkbox" checked="checked" /> <input type="radio" checked="checked" /> <input type="submit" value="Send" /> <input type="reset" /> <input type="hidden" /> <select> <option>Apples</option> <option selected="selected">Bananas</option> <option>Cherries</option> </select> <textarea name="comment" rows="60" cols="20"></textarea></form>
Syntax selector { property: value } body { background: #eeeeee; font-family: “Trebuchet MS”, Verdana, Arial, serif;} h1, h2, h3, h4, h5, h6 { color: #009900; font-family: Georgia, sans-serif;} /* This is a comment */
Block vs. Inline display Block: Takes up the full width available, with a new line before and after (display:block;) Inline: Takes up only as much width as it needs, and does not force new lines (display:inline;)
Position Static: Static positioning is by default the way an element will appear in the normal flow of your (X)HTML file. Relative: Positioning an element relatively places the element in the normal flow of your (X)HTML file and then offsets it by some amount using the properties left, right, top and bottom.
Position Absolute: Positioning an element absolutely, removes the element from the normal flow of your (X)HTML file, and positions it to the top left of its nearest parent element that has a position declared other than static. If no parent element with a position other than static exists then it will be positioned from the top left of the browser window. Fixed: Positioning an element with the fixed value, is the same as absolute except the parent element is always the browser window. It makes no difference if the fixed element is nested inside other positioned elements.
برای توضیح بیشتر در مورد positionبه مقاله زیر مراجعه کنید: http://www.alistapart.com/articles/css-positioning-101
برنامه ی امروز چند منبع خوب مقدمات HTML و CSS نمونه ی عملی جلسه ی گذشته
نمونه ی عملی این آقا رو که یادتون هست؟ مدیر عامل Smart Taxi
برنامه ی امروز چند منبع خوب مقدمات HTML و CSS نمونه ی عملی جلسه ی گذشته
چند وب سایت وب سایت www.cssbasics.com وب سایت www.css-tricks.com وب سایت www.webdesignerswall.com وب سایت www.alistapart.com وب سایت www.smashingmagazine.com
چند ابزار http://colorschemedesigner.com/ http://www.cssbuttongenerator.com/ http://www.colorzilla.com/gradient-editor/ http://www.jotform.com/ Firebug
چند کتاب کتاب Head First HTML with CSS and XHTML کتاب Head First Web Design کتاب Handcrafted CSS: More Bulletproof Web Design
برنامه ی امروز چند منبع خوب مقدمات HTML و CSS نمونه ی عملی جلسه ی گذشته
تا جلسه ی آینده ... Opportunity is missed by most people because it's dressed in overalls and looks like work. Thomas Edison