HTML + CSS

These two languages are the essentials for creating web pages. HTML stand for Hypertext Markup Language and CSS stands for Cascading Style Sheets. HTML has been around since the early 1990s, and makes up the structure and hierarchy for the content of a web page. CSS is what styles the content in terms of color, layout, and size.

Code Example

HTML

<head>
<title>this is what html looks like</title>
</head>
<body>
<div class="class-name">
<h1>Header</h1>
<p>paragraph text</p>
<div>
</body>

CSS

.class-name {
background: white;
padding: 0;
border: 0;
font-family: arial;
font-size: 18px;
}



Resources