Skip to content
Snippets Groups Projects
index.html 953 B
Newer Older
AB0410's avatar
AB0410 committed
<!DOCTYPE html>
<html>
<head>
<title>CSS3 Advanced</title>
AB0410's avatar
AB0410 committed
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
AB0410's avatar
AB0410 committed
<link rel="stylesheet" href="styles.css">
</head>

<body>
  <header id="main-header">
    <h1>This is a Heading</h1>
  </header>

  <main class="container">
    <article class="box">
      <h2>Article</h2>
      <p>This is a paragraph.</p>
    </article>

    <article class="box">
      <h2>Article</h2>
      <p>This is a paragraph.</p>
    </article>
AB0410's avatar
AB0410 committed

    <form class="box">
      <h2>Form</h2>
      <p>First name</p>
      <input type="text">
      <p>Last name</p>
      <input type="text">
      <input type="submit">
    </form>

    <article class="box">
      <h2>Advertisement</h2>
      <p>
        This is some ad text to scam u into buying <br>
        our <strong><i>product</i></strong>
      </p>
      <p>Buy now? <input type="checkbox"></p>
    </article>

AB0410's avatar
AB0410 committed
  </main>
</body>
AB0410's avatar
AB0410 committed
</html>