document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <link rel="stylesheet" href="styles.css">
  5.         <title>Web Warung Tegal</title>
  6.     </head>
  7.  
  8.     <body>
  9.         <div class="wrapper">
  10.             <header>
  11.                 <h1>Warung Tegal</h1>
  12.                 <nav>
  13.                     <ul>
  14.                         <li><a href="" class="current">beranda</a></li>
  15.                         <li><a href="">daftar masakan</a></li>
  16.                         <li><a href="">katering</a></li>
  17.                         <li><a href="">tentang</a></li>
  18.                         <li><a href="">kontak</a></li>
  19.                     </ul>
  20.                 </nav>
  21.             </header>
  22.  
  23.             <section class="courses">
  24.                 <article>
  25.                     <figure>
  26.                         <img src="images/soto.jpg" alt="soto">
  27.                         <figcaption>Soto Indonesia</figcaption>
  28.                     </figure>
  29.  
  30.                     <hgroup>
  31.                         <h2>Soto Ayam</h2>
  32.                         <h3>Makanan Berkuah</h3>
  33.                     </hgroup>
  34.                     <p>Soto ayam adalah makanan khas Indonesia yang berupa sejenis sup ayam dengan kuah yang berwarna kekuningan.</p>
  35.                 </article>
  36.  
  37.                 <article>
  38.                     <figure>
  39.                         <img src="images/pecel.jpg" alt="pecel">
  40.                         <figcaption>Pecel Indonesia</figcaption>
  41.                     </figure>
  42.  
  43.                     <hgroup>
  44.                         <h2>Masakan Pecel</h2>
  45.                         <h3>Makanan dengan Bumbu Kacang</h3>
  46.                     </hgroup>
  47.                     <p>Pecel adalah makanan yang menggunakan bumbu sambal kacang sebagai bahan utamanya yang dicampur dengan aneka jenis sayuran.</p>
  48.                 </article>
  49.             </section>
  50.  
  51.             <aside>
  52.                 <section class="pupolar-recipes">
  53.                     <h2>Masakan Popular</h2>
  54.                     <a href="">Sayur Sop</a>
  55.                     <a href="">Sayur Asem</a>
  56.                     <a href="">Sayur Lodeh</a>
  57.                     <a href="">Sayur Bayam</a>
  58.                 </section>
  59.  
  60.                 <section class="contact-details">
  61.                     <h2>Kontak</h2>
  62.                     <p>Warung Tegal<br>
  63.                         di seluruh Indonesia
  64.                     </p>
  65.                 </section>
  66.  
  67.                 <section class="review">
  68.                     <h2>Ulasan Makanan</h2>
  69.                     <iframe  src="https://www.youtube.com/embed/t0zE2nSE5Mo" title="YouTube video player" width="240px" height="150px" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  70.                 </section>
  71.             </aside>
  72.  
  73.             <footer>
  74.                 &copy; 2021 Warung Tegal
  75.             </footer>
  76.         </div><!--.wrapper-->
  77.     </body>
  78. </html>
');