90 likes | 226 Views
Web Design 101. Using Dreamweaver CS6. Tech Support. Goals for Today . Lecture or HTML Do some HTML Create a page in Dreamweaver Set up some file management stuff Activate your server space Publish your site on the USD server. HTML . Hypertext Markup Language
E N D
Web Design 101 Using Dreamweaver CS6
Goals for Today Lecture or HTML Do some HTML Create a page in Dreamweaver Set up some file management stuff Activate your server space Publish your site on the USD server
HTML • Hypertext Markup Language • It is the vocabulary of the web…. • But its just used to format the vocabulary and what the text looked like when sent over a shared network • The goal of a web designer is create a web page for display in a browser.
World Wide Web Thank you !!!Tim Berners Tim- wanted to share information with his technical peers via the Internet (shared network) He wanted to share his language protocol (HTML) with the scientific community in hopes of a wide adoption
HTML • HTML • Consists of less than 100 code elements • These elements are used to • Create page structure • Format text • Enable interactivity and programmability
code! • <html > • <Head> • <title>Untitled Document</title> • </Head> • <body> • <p>Hello World</p> • </body> • </html>
Page Structure Most webpages have at least 3 fundamental elements Root- contains all the code and content for the web page, it tells the browser what type of code elements to expect within the page Head- Holds code that is background tasks such as styling, links, and other info. Body- holds all visible content such as text, tables, images, movies …