info 1300: local development 10/16/2015. index.html important homepage for every project in this...

12
INFO 1300: LOCAL DEVELOPMENT 06/17/22

Upload: myles-nash

Post on 16-Jan-2016

220 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

INFO 1300: LOCAL DEVELOPMENT04/21/23

Page 2: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Index.html• Important• Homepage for every project in this course• Points will be deducted otherwise

Page 3: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Structure• Structure is important to maintain organization and separate logic• Organization and naming is important• When we look at files, what do you think we click on first?• Root folder• Img folder• Css folder• Js folder

Page 4: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Relative Paths• If the img file was in the same folder as the index.html• If the img was placed in a img folder that is in the folder where the index.html exists• Relative to current file

<img src=”picture.png” ><img src=”picture.png” >

<img src=”img/picture.png”><img src=”img/picture.png”>

Page 5: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Relative Path - Images• Images will be very helpful to creating a website• How can we include images in our pages?• Resource- http://www.w3schools.com/html/html_images.asp

Page 6: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Absolute Paths• An absolute link is created when the href value is a fully qualified URL• http://• www• filename

Page 7: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Do the activities

Page 8: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Course Technology: Local Web Development• Web server solution will allow quick local testing when you start using php and databases• WAMP for Windows users• http://www.wampserver.com/en/

• MAMP for Mac users• http://www.mamp.info/en/

• XAMPP for Mac/Linux/Windows users• https://www.apachefriends.org/index.html

• LAMP(Linux, Apache, MySQL, PHP) for Linux users• https://www.digitalocean.com/community/tutorials/how-to-

install-linux-apache-mysql-php-lamp-stack-on-ubuntu

Page 9: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Course Technology: XAMPP example• Download and Install• Ignore the add-in checkboxes• The default installation options are fine

Page 10: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

XAMPP example cont’d• Start apache• Locate the root folder• Put in the project folder• In browser, go to http://localhost/projectfoldername/index.html

Page 11: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

More help• https://www.apachefriends.org/faq_osx.html• Windows and linux faqs on the right

Page 12: INFO 1300: LOCAL DEVELOPMENT 10/16/2015. Index.html Important Homepage for every project in this course Points will be deducted otherwise

Questions?