Code Monkey home page Code Monkey logo

website-template's Introduction

Website-Template

A template to use for a personal website!

There are four different files in this repo:

  1. index.html (template for this website with several in-line comments explaining tags and HTML concepts)
  2. index_finished.html (a filled out template with my information with comments)
  3. index_uncommented.html (template for this website without comments)
  4. index_finished_uncommented.html (a filled out template with my information without comments)

Pick your favorite file to edit, but if you're uploading this to Github later and not using "index.html" make sure to rename your file to "index.html" because that's the file that Github loads on Github Pages.

A Brief Overview of HTML Tags

  • <head>: Where we link to external stylesheets, specify a favicon, and list any metadata.
    • <title>: Normally inside of <head>, the title of the webpage and what shows up in the tab.
    • <link>: Normally inside of <head>, allows us to reference files outside of this HTML file.
  • <body>: Contains all the content that someone will see on the website.
  • <div>: A way to group together related content.
  • <img>: An image. Normally contains a src attribute that tells the webpage where to get the image from. Should also include an alt attribute that describes what the image is for accessibility.
  • <p>: Stands for paragraph. Used when you want to display some text.
  • <a>: Used for links. Normally contains a href atrtibute, which specifies what the content is linked to.
  • <ul>: An unordered list (uses bullet points). The parent container of list items.
  • <ol>: An ordered list (uses numbers instead of bullet points). The parent container of list items.
  • <li>: A list item. Must be nested inside of either <ul> or <ol>.
  • <br/>: A line break. It's self-closing!

Resources to Use

There's a lot of cool web development resources!

CSS

JavaScript

Some Website Inspirations

website-template's People

Contributors

olgarithm avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.