Advertisement
Uhuuuyy

about-page.html

Jan 18th, 2024 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.17 KB | Source Code | 0 0
  1. <!--
  2. @license
  3. Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
  4. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
  5. The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
  6. The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
  7. Code distributed by Google as part of the polymer project is also
  8. subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
  9. -->
  10.  
  11. <link rel="import" href="../bower_components/polymer/polymer-element.html">
  12. <link rel="import" href="shared-styles.html">
  13.  
  14. <dom-module id="about-page">
  15.   <template>
  16.     <style include="shared-styles">
  17.       :host {
  18.         display: block;
  19.  
  20.         padding: 10px;
  21.       }
  22.     </style>
  23.  
  24.     <div class="card">
  25.       <h1>Golang Intermediate</h1>
  26.       <p>Nama Kalian</p>
  27.       <p>Kelas: kelas kalian</p>
  28.       <p>Pertemuan: 6</p>
  29.     </div>
  30.   </template>
  31.  
  32.   <script>
  33.     class AboutPage extends Polymer.Element {
  34.       static get is() { return 'about-page'; }
  35.     }
  36.  
  37.     window.customElements.define(AboutPage.is, AboutPage);
  38.   </script>
  39. </dom-module>
  40.  
Tags: Inter6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement