Teens in Tech Conference
Ruby Data Types

There are various numbers of data types in Ruby. Data types are classification that are used to identify operations. Ruby data types are very similar to that of Phython, with simple and little changes. The different types that can be used are:

1. string= Strings are words. Every string must contain quotation marks around it.

Example of string: “Avocado”

2. integer= Integers are basicly numbers.

Example of integer: 96

3. float= To make it simple, float is an integer with a decimal point

Example of float: 96.00

4. array= Arrays are lists of items. Arrays must include []

Example of array: [1,2,3,4]

5. boolean= True or False Statements

Example of boolean: true

6. hash= Dictionary, used to assign values to items.

Example of hash: {back=>hi, front=> bye}

CSS

CSS stands for Cascading Style Sheets. CSS is a style sheet that can be used in HTML to deeply modify your page. CSS is widely used and is very helpful with its various amounts of available customization. Some examples are border, color, and size. With every CSS you must add {, put the commands  after, then and end with }.Here is what it should look like:

#example{

border: 2 px solid red;

}

Putting a # will be an id which should only be used only once. Putting a . will be a class which can be used for multiple tags.

Basic HTML

Tags are codes that contains <>. Each tag are pairs, therefore a <> must have a </> right after. For example- <h1>example</h1>. The tag <h1> must end with </h1> after the text. Every HTML file must contain at least three tags- <html>, <head>, and <body>. Without these, an HTML file will not function. <html> tells the computer that it is an HTML file and tells it where it ends. <head> tells the title and the style of the overall page. Things that are contained in the head will not show up in the page. Last but not least <body>. This is where you plug in codes to create your page.

This is how a page of codes should look:

<html>

<head>

</head>

<body>

</body>

</html>

There are numerous amounts codes for making a page. Some of the simple codes are:

<h1>header- prints big text

<h2>header- big text but small than <h1>

<a>link

<ol>ordered list

<li>list items

<p>paragraph- prints texts

<b>bold

<i>italics

<table>creates table

In a tag, you can put an attribute. For <a> you can add href to look like <a href> to tell it where the link will go.

Teens in Tech Conference

The Teens in Tech Conference was an awesome experience. The conference started at 9:00 AM and ended at 5:00 PM. Throughout the conference, speakers expressed their life and how they came to be entrepreneurs. After a couple of speakers finished, there would be break times where there contains an enormous amount of food and drinks such as muffins, coke, and sandwiches. The confenrence was sponsored by many tech companies, therefore many free items were given away. And in the raffles, they even gave out a laptop and phones. I,myself, receive a snowball microphone, a portable speaker, an emergency phone speaker, and much more. I had a great experience talking to some famous, rich people that are in big companies. I would be delighted to come back.