Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en" prefix="og: http://ogp.me/ns#">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!--
- v2320223 - minor changes
- -->
- <!-- CLEAN MARKUP = GOOD KARMA.
- Hi source code lover,
- you're a curious person and a fast learner ;)
- Let's make something beautiful together. Contribute on Github:
- https://github.com/webslides/webslides
- Thanks!
- -->
- <!-- SEO -->
- <title>WebSlides: Why WebSlides is so inspiring?</title>
- <meta name="description" content="WebSlides is about good karma. Create your own HTML presentation instantly. Just the esentials.">
- <!-- URL CANONICAL -->
- <!-- <link rel="canonical" href="http://your-url.com/permalink"> -->
- <!-- Google Fonts
- <link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,700,700i%7CMaitree:200,300,400,600,700&subset=latin-ext" rel="stylesheet">
- -->
- <!-- CSS Base -->
- <link rel="stylesheet" type='text/css' media='all' href="static/css/webslides.css">
- <!-- Optional - CSS SVG Icons (Font Awesome) -->
- <link rel="stylesheet" type="text/css" media="all" href="static/css/svg-icons.css">
- <!-- FAVICONS -->
- <link rel="shortcut icon" sizes="16x16" href="static/images/favicons/favicon.png">
- <link rel="shortcut icon" sizes="32x32" href="static/images/favicons/favicon-32.png">
- <link rel="apple-touch-icon icon" sizes="76x76" href="static/images/favicons/favicon-76.png">
- <link rel="apple-touch-icon icon" sizes="120x120" href="static/images/favicons/favicon-120.png">
- <link rel="apple-touch-icon icon" sizes="152x152" href="static/images/favicons/favicon-152.png">
- <link rel="apple-touch-icon icon" sizes="180x180" href="static/images/favicons/favicon-180.png">
- <link rel="apple-touch-icon icon" sizes="192x192" href="static/images/favicons/favicon-192.png">
- <!-- Android -->
- <meta name="mobile-web-app-capable" content="yes">
- <meta name="theme-color" content="#333333">
- </head>
- <body>
- <header role="banner">
- <nav role="navigation">
- <!-- <p class="logo"><a href="index.html" title="WebSlides">WebSlides</a></p> -->
- <h1 class="text-landing">BASIC</h1>
- </nav>
- </header>
- <main role="main">
- <article id="webslides" class="vertical">
- <!-- Quick Guide
- - Each parent <section> in the <article id="webslides"> element is an individual slide.
- - Vertical sliding = <article id="webslides" class="vertical">
- - <div class="wrap"> = container 90% / <div class="wrap size-50"> = 45%;
- -->
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <h1 class="text-landing">BASIC</h1>
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <h1 class="text-landing">BASIC</h1>
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 20 PAPER 4
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 20 PAPER RND*7
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 20 PAPER RND*7
- 30 BORDER RND*7
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 20 PAPER RND*7
- 25 INK RND*7
- 30 BORDER RND*7
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <pre class="text-intro">
- 5 INPUT "Type your name(s)";A$
- 10 PRINT "HELLO ";A$
- 20 PAPER RND*7
- 25 INK RND*7
- 30 BORDER RND*7
- 40 GO TO 10
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- <section>
- <!--.wrap = container (width: 90%) -->
- <div class="wrap aligncenter">
- <pre class="text-intro">
- 10 PRINT "HELLO";
- 20 PAPER RND*7
- 25 INK RND*7
- 30 BORDER RND*7
- 35 CLS
- 40 GO TO 10
- 50 REM Shift+Space
- </pre>
- </div>
- <!-- .end .wrap -->
- </section>
- </article>
- </main>
- <!--main-->
- <!-- Required -->
- <script src="static/js/webslides.js"></script>
- <!-- Autoslide 5 seconds. If you don't want autoslide, remove: {autoslide: 5000} -->
- <script>
- //window.ws = new WebSlides({ autoslide: 5000 });
- window.ws = new WebSlides({ });
- </script>
- <!-- OPTIONAL - svg-icons.js (fontastic.me - Font Awesome as svg icons)
- <script defer src="static/js/svg-icons.js"></script>
- -->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement