1 / 30

e-commerce & e-business

e-commerce & e-business. upcoming project. create a simulated e-business with e-commerce ability. HTTP. Language web comm. interface between client and server while transferring web requests (eg, HTML pages). HTML. Language of a web page.

kamil
Download Presentation

e-commerce & e-business

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. e-commerce & e-business upcoming project create a simulated e-business with e-commerce ability

  2. HTTP Language web comm interface between client and server while transferring web requests (eg, HTML pages)

  3. HTML Language of a web page interface between server and user presenting the visible page

  4. HTML text document used by Web browsers to present and format hypertext

  5. HTML See HTML via [view | source]

  6. HTML tags A key element of HTML “command” not data Eg <p> means paragraph

  7. HTML tags title <title> eBiz site </title> Displayed in browser window title bar

  8. HTML tags headings <h1> important </h1> h1 through h6

  9. HTML tags paragraphs <p> a paragraph of text</p> A “block”

  10. HTML tags emphasis This is a very <em>interesting</em> web site!

  11. HTML tags Graphic images <img src = “vette.jpg” width=“175” height=“125”> width and height not required (loads faster)

  12. HTML tags “fallback” plan If image can’t be seen <img src = “vette.jpg” width=“175” height=“125” alt=“My wife’s vette” >

  13. HTML tags alt will display the text longer description needed? <img src = “vette.jpg” width=“175” height=“125” alt=“My wife’s vette” longdesc=“vette.html”>

  14. HTML tags Links (hyperlinks) <a> tag (anchor) <a href=“http://www.w3.org”> W3C </a> Off-site link

  15. HTML tags On-site link <a href= “vette.html”> Corvette Info </a> href = hyperlink reference url of resource

  16. HTML tags Link on graphic image <a href="/"> <img src="logo.gif" alt="home page"> </a> logo might be company logo

  17. HTML tags Link on graphic image <a href="../images/vette.jpg">C4 Corvette map</a>

  18. HTML tags Phishing attack <a href=“www.bad.com">www.good.com</a>

  19. Phishing Recent attack

  20. Phishing

  21. Phishing

  22. HTML tags Lists <ul> unordered list <li> list item <ul> <li> first list item </li> <li> second list item </li> </ul>

  23. HTML tags Ordered lists <ol> and <li> tags <li> list item

  24. HTML tags Force a line break <br> (break) <p>CUW<br>12800 LSD dr<br>Mequon, WI<br> </p>

  25. HTML tags non-breaking spacing don’t allow browser to break the line here &nbsp; 12800&nbsp;LSD&nbsp;dr

  26. HTML tags link to middle of page provide an anchor <h2><a name=“engine"> Vette Engine</a></h2>

  27. HTML tags link to middle of page # reference <li><a href="#engine"> Vette Engine Info </a></li>

  28. resource design help http://www.webstyleguide.com/ link

  29. HTML Why learn HTML? if FrontPage can create the HTML, why learn it? - optimize “code” - advanced techniques

  30. HTTPS secure version of HTTP use to “encrypt” comm so “plain text” cannot be intercepted and read (eg, credit card numbers)

More Related