Difference between revisions of "Designing Solutions Through Programming block 1 Lesson Notes - August 29"
Jump to navigation
Jump to search
Mr. MacKenty (talk | contribs) (Created page with " __NOTOC__ <table cellspacing="10" style="width:100%;"> <tr> <td style="width:50%; margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1...") |
Mr. MacKenty (talk | contribs) |
||
Line 78: | Line 78: | ||
# the images should be visible | # the images should be visible | ||
# you should use one DIV box, styled with CSS. | # you should use one DIV box, styled with CSS. | ||
+ | |||
+ | === Students who are little more comfortable coding === | ||
+ | * You will customize a bootstrap template: | ||
+ | |||
+ | <syntaxhighlight lang="html"> | ||
+ | <!DOCTYPE html> | ||
+ | <html> | ||
+ | <head> | ||
+ | <title>Bootstrap 3 Template</title> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
+ | |||
+ | <!-- Bootstrap core CSS --> | ||
+ | <link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" media="screen"> | ||
+ | |||
+ | <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
+ | <!--[if lt IE 9]> | ||
+ | <script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.js"></script> | ||
+ | <script src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script> | ||
+ | <![endif]--> | ||
+ | </head> | ||
+ | <body> | ||
+ | <h1>Hello, Bootstrappers!</h1> | ||
+ | |||
+ | <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | ||
+ | <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | ||
+ | <!-- Include all compiled plugins (below), or include individual files as needed --> | ||
+ | <script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script> | ||
+ | </body> | ||
+ | </html> | ||
+ | </syntaxhighlight> | ||
Revision as of 11:50, 29 August 2017
|
|
|
|
||
|
|
|
|