Tessa Kriesel
Agency & Community Engineer at Pantheon
Experience:
Agency & Community Engineer @ Pantheon
Application Developer @ General Mills
Lead Developer @ Windmill Design
+ Lots of other great roles...
Founder, Coders of Tmrw + Instructor for Girl Develop + Dog Rescue Volunteer
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
(left side)
(right side)
Your name
Grade level
Why you are interested in coding
Software development is the process of computer programming, documenting, testing, and bug fixing involved in creating and maintaining applications and frameworks involved in a software release life cycle and resulting in a software product.
-Wikipedia
A standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide Web pages.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
<tagname>content goes here...</tagname>
Note: Only the content inside the <body> section (the white area above) is displayed in a browser.
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
or Control + S (Windows) and Command + S (Mac)
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
<a href="http://google.com">This is a link</a>
The link's destination (google.com) is specified in the href attribute.
Attributes are used to provide additional information about HTML elements.
<img alt="Cute Puppy" src="http://codersoftmrw.org/puppy.jpg">
The source file (src), alternative text (alt) are attributes.
@tessak22
tessa@codersoftmrw.org
CSS is a language that describes the style of an HTML document.
The selector points to the HTML element you want to style.
The declaration block contains one or more declarations separated by semicolons.
Each declaration includes a CSS property name and a value, separated by a colon.
p {
color: red;
text-align: center;
}
Create a new file
Save as theme.css in your website folder
Open index.html
In the <head> </head> area, add the following code:
<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
By Tessa Kriesel
Introduction to the Web & Software Industry