Difference between revisions of "Example 1 - no bootstrap"
From MyWiki
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
<source lang="html4strict"> | <source lang="html4strict"> | ||
+ | <!DOCTYPE html> | ||
+ | <html> | ||
+ | <head> | ||
+ | <title>Toko - A MintLabs Project</title> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
+ | <!-- Latest compiled and minified CSS --> | ||
+ | <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> | ||
− | + | <!-- Optional theme --> | |
+ | <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> | ||
+ | <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media | ||
+ | queries --> | ||
+ | <!--[if lt IE 9]> | ||
+ | <script src="../../assets/js/html5shiv.js"></script> | ||
+ | <script src="../../assets/js/respond.min.js"></script> | ||
+ | <![endif]--> | ||
+ | </head> | ||
+ | <body> | ||
+ | <div> | ||
+ | <header> | ||
+ | <ul> | ||
+ | <li><a href="#">Home</a> | ||
+ | </li> | ||
+ | <li><a href="#">About Toko</a> | ||
+ | </li> | ||
+ | <li><a href="#">MintLabs</a> | ||
+ | </li> | ||
+ | </ul> | ||
+ | <h3>Toko</h3> | ||
+ | </header> | ||
+ | <div> | ||
+ | <h1>Self-destructing message app</h1> | ||
+ | <p>Learn how to build iPhone and iPad apps from scratch in my book!</p> | ||
+ | <p><a href="#">Download the app!</a> | ||
+ | </p> | ||
+ | </div> | ||
+ | <div> | ||
+ | <p>© 2013 Toko - By MintLabs</p> | ||
+ | </div> | ||
+ | </div> | ||
+ | </body> | ||
+ | </html> | ||
</source> | </source> |
Latest revision as of 15:48, 17 September 2015
<!DOCTYPE html> <html> <head> <title>Toko - A MintLabs Project</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="../../assets/js/html5shiv.js"></script> <script src="../../assets/js/respond.min.js"></script> <![endif]--> </head> <body> <div> <header> <ul> <li><a href="#">Home</a> </li> <li><a href="#">About Toko</a> </li> <li><a href="#">MintLabs</a> </li> </ul> <h3>Toko</h3> </header> <div> <h1>Self-destructing message app</h1> <p>Learn how to build iPhone and iPad apps from scratch in my book!</p> <p><a href="#">Download the app!</a> </p> </div> <div> <p>© 2013 Toko - By MintLabs</p> </div> </div> </body> </html>