Code Monkey home page Code Monkey logo

dbf8.github.io's People

Contributors

dbf8 avatar

Watchers

 avatar

dbf8.github.io's Issues

tip: put text in an element

It's best to have any text in your html inside of an element. Here, maybe a heading element and a paragraph element?

INSERT RESUME HERE
Lorem ipsum dolor sit amet consectetur adipisicing elit. Pariatur laudantium laboriosam reiciendis eligendi! Ullam accusantium iste delectus cumque, dolore nam, quasi voluptate distinctio soluta, in error laborum quae minima consectetur.

tip: lists

Lists are made up of ul or ol (for different types of lists) and each list item inside of an li. Here you're creating multiple unordered lists (ul) and filling them with just text!

<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>
<ul>list</ul>

Instead, you'd want something like this:

<ul>
  <li>Some Text</li>
  <li>Some Text</li>
  <li>Some Text</li>
</ul>

tip: consider property declaration ordering

There are many ways to order your property declarations, including randomly, alphabetically or by type. I suggest ordering them by type, following the tips outlined in this article

body {
background: rgb(171, 224, 224);
margin: 5%;
border: solid gray 5px;
padding: 20px;
margin: 20px;
font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
display: grid;
grid-template-rows: 100px, 400px, 400px, 100px;
grid-template-columns: 100px, 100px, 100px;
}

tip: use `p` tags for text and `div`s for structure

Any text you have should go inside of a text element, like p, a, span or an h# element. divs are useful for structuring and organizing content

<div class = "bottommiddle">
A work in progress
</div>
<div class = "bottomright">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae provident molestias odit. Consequatur minima, accusantium quo aut neque asperiores blanditiis impedit non et, excepturi alias autem dignissimos, repellendus nihil laboriosam. Lorem ipsum dolor sit amet consectetur adipisicing elit. Cupiditate adipisci minima dolore tempora vel facilis itaque, quis quidem doloribus maxime? Commodi impedit tempore inventore beatae expedita alias explicabo recusandae nulla!
</div>

tip: spacing in html attributes

The convention when writing HTML is to not add spacing in your attributes or around attribute assignment (the =).

So instead of this:

<div class = "topright">
<ul class = "links">

You'd have something like this:

 <div class="topright"> 
   <ul class="links"> 

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.