Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HTML:
- <!DOCTYPE <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>uHost</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
- <link href="https://fonts.googleapis.com/css?family=Cinzel" rel="stylesheet">
- <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
- </head>
- <body>
- <main>
- <section id="product-overview">
- <h1>Get the freedom you deserve.</h1>
- </section>
- <section id="plans">
- <h1 class="section-title">Choose Your Plan</h1>
- <p>Make sure you get the most for your money!</p>
- </section>
- </main>
- </body>
- </html>
- CSS:
- body {
- font-family: 'Montserrat', sans-serif;
- /* margin: 0; */
- }
- /* main {
- height: 500px;
- } */
- #product-overview {
- background: #ff1b68;
- width: 700px;
- height: 100%;
- }
- .section-title {
- color: #2ddf5c;
- }
- #product-overview h1 {
- color: white;
- font-family: 'Cinzel', serif;
- }
- /* h1 {
- font-family: sans-serif;
- } */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement