Web Technologies Flashcards
HTML paragraph tag
<p>
</p>
HTML heading tag
<h1>
</h1>
HTML tag enclosing the entire code
<html>
</html>
HTML tag below the head section
<body>
</body>
HTML section that contains any content that doesn’t appear directly in the main window
<head>
</head>
HTML image code
<img></img>
src stands for source
For text which describes the image:
<img></img>
HTML code to specify the size of a picture
<img></img>
HTML hyperlink code
<a>text shown</a>
a stands for anchor
HTML ordered list
<ol>
<li> first item </li>
<li> second item </li>
</ol>
HTML unordered list
<ul>
<li> first item </li>
<li> second item </li>
</ul>
To create a form in HTML
<form>
<input="type" name="searchbox" id="searchbox">
<input="submit" value="search">
</form>
First line creates an answer box, second line creates a submit button
HTML divisions
<div>
Code
</div>
CSS
Cascading style sheet
HTML
Hypertext markup language
CSS code styled with the rule-set for the <h2> tag
h2 {
color: red;
font-size: 25px;
}