Websites for everyone

The new way to create clean, responsive websites.

Make websites in seconds

Use Headline, a quick and easy markdown-like language that creates sites in seconds.

No more code, just great content for your website.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
  <html>
    <head>
      <style>
        .header {
          display: flex;
          justify-content: space-between;
          align-items: center; 
          padding: 5% 10%;
          background-color: #eeeeee;
        }

        .header-text-cont {
          flex-grow: 1;
          display: flex;
          justify-content: space-evenly;
        }

        .header-image-cont {
          flex-grow: 1;
          display: flex;
          justify-content: space-evenly;
          padding: 0 10vh;
        }

        .header-image {
          width: 30vw;
        }

        .header-text {
           padding: 0 10vh;
        }

        .header-title {
          font-size: 3vw;
          margin: 0;
        }

        .header-subtitle {
          font-size: 1vw;
          line-height: 175%;
        }
      </style>
    </head>

    <body>
      <div class="header">
       <div class="header-text-cont">
          <div class="header-text">
               <h1 class="header-title">The old way to make a website</h1>
               <p class="header-subtitle">A painfully slow method to creating websites. And this isn't even half the code you'd need.</p>
          </div>
      </div>
          <div class="header-image-cont">
               <img class="header-image" src="./sademoji.png">
          </div>
    </div>
  </body>
</html>

Without Headline: 50 lines of code.

# Header
[title] Making a website has never been so easy
[subtitle] A fully responsive component in 20 seconds.
[image] headlineLogo.png

With Headline: As easy as writing a text

Online editor

Use our in browser editor to make flawless, stunning websites. No software download required.

Instantly export your site

Download your site to your computer and instantly run it.

Ready to make your own?

Start with our documentation and editor to get started.