WPDIR
Everything and everyone WordPress

How to Build a Personal Webpage from Scratch

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #370 Reply
    Stephanie
    Guest

    A refreshing, simple guide to launching a basic HTML website using GitHub pages and Cloudflare

    https://rutar.org/writing/how-to-build-a-personal-webpage-from-scratch/

    #371 Reply
    Olivia
    Guest
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width">
    
        <title>Example Webpage</title>
        <meta name="description" content="An example webpage.">
        <meta name="author" content="Alex Rutar">
      </head>
      <body>
        <header>
          Example Webpage
        </header>
        <nav>
          Writing
          About
        </nav>
        <article>
          <h1>Welcome to my webpage</h1>
          <p>This is some content!</p>
        </article>
      </body>
    </html>
    #410 Reply
    Matthew
    Guest

    HTML5 elements tho, so not entirely school

Viewing 3 posts - 1 through 3 (of 3 total)
Reply To: How to Build a Personal Webpage from Scratch