• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/74

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

74 Cards in this Set

  • Front
  • Back
HTML
HTML is an abbreviation for HyperText Markup Language and is used to structure your web page.
CSS
CSS is an abbreviation for Cascading Style Sheets.
CSS gives you a way to
tell the browser how elements in your page should look.
CSS is used to control the
presentation of your HTML.
Tags in HTML - Purpose
Tags are just words or characters in angle brackets,
like <head>, <p>, <h1>, and so on.
The tags tell the browser about
the structure and meaning of your text.
<h2> and </h2> as example of providing structure to browser
The <h2> and </h2> tags
go around a subheading.
Think of an <h2> heading
as a subheading of an <h1>
heading.
<html> and </html>
First, surround your
HTML with <html> &
</html> tags. This tells
the browser the content
of the file is HTML.
<head> and </head>
Next add <head> and </head> tags. The
head contains information about your Web
page, like its title. For now, think about it this way: the head allows you to tell the browser things about the Web page.
Go ahead and put a title
inside the head. The title
usually appears at the top
of the browser window.
The head consists of the <head>
& </head> tags and everything
in between.
<body> and </body>
The body contains all the content and
structure of your Web page – the parts of
the Web page that you see in your browser.
The body consists
of the <body>
& </body> tags
and everything in
between.
What's an element?
Element = Opening Tag + Content + Closing Tag
Do matching tags have to be on the same line?
No; remember the browser doesn’t really care about tabs, returns, and most spaces. So, your tags can start and end
anywhere on the same line or they can start and end on different lines. Just make sure you start with an opening tag, like <h2>, and end with a closing tag, like </h2>.
Adding style
To add style, you add a new (say it with us) E-L-E-M-E-N-T
to your page – the <style> element.
The <style> element is placed inside the head of your HTML.
the <style> tag also requires an attribute, called type, which tells the browser the kind of style you’re using.
Because you’re going to use CSS, you need to specify the “text/css” type.
An element can have an “attribute?”
Attributes give you a way to provide additional information
about an element. Like, if you have a style element, the attribute allows you to say exactly what kind of style you’re talking about.
You’ll be seeing a lot more attributes for various elements; just remember they give you some extra info about the element.
Linking pages
Use the <a> element
The href attribute of the <a> element specifies the destination of the link.
Hyperlink you see in page
The content of the <a> element is the label for the link. The label is what you see on the Web page. By default, it's underlined to indicate you can click on it.
Can you use words or an image as the label for a link?
Yes
When you click on a link, what tells the browser the web page to load?
href attribute
Can you link to files in the same folder or files in other folders?
Yes
What's the purpose of a relative path?
A relative path is a link that points to other files on your Web site relative to the Web page your linking from.
Just like on a map, the destination is relative to the starting point.
What do you use ".." to do in linking pages?
Use ".." to link to a file that's one folder above the file you're linking from.
What does ".." mean?
".." means the "parent folder."
What character separates the parts of your path in html?
the "/" character
When your path to an image is incorrect, what are you going to see on your Web page?
A broken image
In choosing names for files and folders for your Web site what is a good practice?
Don't use spaces in names for files or folders
Name a good file and/or organization idea?
It's a good idea to organizae your Web Site files early on in the process of building your site, so you don't have to change a bunch of paths later when the Web site grows.
Use this element for short quotes...you know, like "to be or not to be"
<q>
Just give me a paragraph please
<p>
The code element is used for displaying code from a computer program?
<code>
Use this element to mark up text you want emphasized.
<em>
This element tells the browser that the content is an address, like your your contact information.
<address>
Need to display a list? Say, a list of ingredients in a recipe or a todo list?
<url>
For items in lists, like chocolate, hot chocolate, chocolate syrup
<li>
Use this element to mark up text you want to emphasized with extra strength
<strong>
Use this element for formatted text when you want the browser to show your text exactly as you typed it.
<pre>
An empty element for making linebreaks...
<br>
A way to make horizontal lines (called "horizontal rules") like to start a new section without a heading
<hr>
What element is used for lengthy quotations, like from a book?
<blockquote>
What is a good web page process?
Plan the structure of your Web pages before you start typing in your content. Start with a sketch, then create an outline, and write the HTML.
Plan your page starting with large block elements, and then refine with inline elements.
Good habit for browsers
Whenever possible, use elements to tell a browser what your content means.
A good habit in choosing elements?
Always use the element that most closely matches the meaning of your content. For example, never use a paragraph when you need a list.
Block elements
<p>, <blockquote>, <ol>, <ul>, and <li> are all block elements. They stand on their own and are displayed with space above and below the content in the containing element.
Inline elements
<q>, <em>, and <a> are all inline elements. The content in these elements flows in line with rest of the content in the containing elements.
What element can you use when you need to insert your own linebreaks?
<br>
Empty element
<br>
Empty elements have no content.
An empty element consists of only one tag.
Nested element
A nested element is an element contained completely within another element. If your elements are nested properly, all tags will match correctly.
Making an HTML list
You make an HTML list using two elements in combination: use <ol> with <li> for an ordered list: use <ul> with <li> for an unordered list.
What does a browser do to an ordered list?
When the browser displayed an ordered list, it creates the number for the list so you don't have to.
Ordering an ordered list
You can specify your own ordering in an ordered list with the start attribute. To change the values of the individual items, use the value attribute.
How can you build nested lists within lists?
You can build nested lists within lists by putting <ol> or <ul> elements inside your <li> elements.
What is a good practice regarding entities?
Use entities for special characters in your HTML content.
URL
A URL is a Uniform Resource Locator, or Web address, that can be used to identify any
resource on the Web.
A typical URL consists of a protocol, a Web site name, and an absolute path to the
resource.
What's HTTP?
HTTP is a request and response protocol used to transfer Web pages between a Web server and your browser.
File protocol
The file protocol is used by the browser to read pages from your computer.
Absolute Path
An absolute path is the path from the root folder to a file.
Default Pages
“index.html” and “default.htm” are examples of default pages. If you specify a directory
without a filename, the Web server will look for a default page to return to the browser.
Linking to other URLs
You can use relative paths or URLs in your <a> element’s href attribute to link to other
Web pages. For other pages in your site, it’s best to use relative paths, and use URLs for external links.
Creating a destination anchor
Use the id attribute to create a destination anchor in a page. Use ‘#’ followed by a
destination anchor id to link to that location in a page.
Title attribute & accessibility
To help accessibility, use the title attribute to provide a description of the link in <a> elements.
Opening a URL link in another browser window
Use the target attribute to open a link in another browser window. Don’t forget that
the target attribute can be problematic for users on a variety of devices and alternative browsers.
Right to Transfer
Investors have the right to freely transfer their shares. The transfer agent will remove the name of the selling shareholder from the books of the corporation and add the name of the buyer on the settlement date. An investor may sign a stock or bond power instead of the certificate to transfer ownership
Liquidation Priority
In the event of a company's bankruptcy or liquidation, common shareholders have the right to receive their proportional interest in residual assets. After all the other security holders have been paid, along with all creditors of the corporation, common stockholders may claim the residual assets. For this reason common stock is the most junior security.
Right to Vote
There are 2 methods by which the voting process may be conducted, and they are known as the statutory and cumulative methods of voting. A stockholder may cat one vote for each share of stock owned and the statutory or cumulative methods will determine how those votes are cast.
Statutory Method
Requires that the votes be distributed evenly among the candidates that the investor wishes to vote for
Cumulative Method
This method allows the shareholder to cast all their votes in favor of one candidate, if they so choose. The cumulative method is said to favor smaller investors for this reason.
Market Capitalization
A company's market capitalization refers to the total value of all outstanding common shares. Market capitalization is divided into large cap (10 billion>); middle cap (2 to 10 billion); small cap (<2 billion
Large Cap Stocks
Companies with market value greater than 10 billion dollars
Middle Cap stocks
Companies with market value between 2 and 10 billion dollars
Small Cap stocks
Companies with market value less than 2 billion dollars
Growth Investors
Investors that are seeking capital appreciation over time, want their money to grow in value and are not seeking any current income. The only investments that will achieve this goal are common stocks or a common stock fund.
Income Investors
Many investors are looking to have their investments generate additional income to help meet their monthly expenses. Some investments that will help meet this need are: Corporate bonds;Municipal Bonds; Government bonds;Preferred stocks;Money market funds;Bond Funds
Value Investing
Value investors look to identify companies whose share price is trading at a discount to their asset value, cash flow or other value measurements
Defensive Industries
The earnings of a defensive industry will be the least susceptible to the changes in the overall economy. Defensive industries include food and pharmaceuticals
Cyclical Industries
The earnings of a company in a cyclical industry are highly susceptible to the condition of the overall economy. As the economy improves the company will do well. If the economy does poorly the company will perform poorly. company. Cyclical industries include manufacturing, raw materials and automobiles
American Depository Receipts (ADR)
Facilitate the trading of foreign securities in the US markets. An ADR is a receipt that represents the ownership of the foreign shares that are being held abroad in a branch of a US bank
Preferred Stock
Preferred stock is an equity security with a fixed income component. Like a common shareholder, the preferred stockholder is investing in the stock for the fixed income that the preferred shares generate through their semi-annual dividends. Preferred stock may have additional features such as: Cumulative;Participating; Convertibility
Customer Orders
Investors can enter various types of orders to buy or sell securities. Some orders guarantee that the investor's order will be executed immediately. Other types of orders may state a specific price or condition under which the investor wants their order to be executed. All orders are considered "day" orders unless otherwise specified. all day orders will be canceled at the end of the trading day if they are not executed. All quotes are firm for at least 100 shares