0% found this document useful (0 votes)
120 views3 pages

Programming B Language: HTML/CSS Programming Language Specifics

This document provides an overview of HTML, CSS, and JQuery programming languages. It discusses that these languages are used to create websites, with HTML created by Tim Berners-Lee and JQuery created by Jon Resig. It states that every company with a website uses these languages, and an IT degree is typically required to work professionally with them, with the average salary being $78,000 per year. These languages could also be used to organize information accessibly. The document then describes the basic syntax of HTML, including tags for the document type, HTML and body elements, titles, and paragraphs. It provides 10 lines of sample HTML/JQuery code to hide and toggle an element using a button. Finally, it notes

Uploaded by

api-283667529
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
120 views3 pages

Programming B Language: HTML/CSS Programming Language Specifics

This document provides an overview of HTML, CSS, and JQuery programming languages. It discusses that these languages are used to create websites, with HTML created by Tim Berners-Lee and JQuery created by Jon Resig. It states that every company with a website uses these languages, and an IT degree is typically required to work professionally with them, with the average salary being $78,000 per year. These languages could also be used to organize information accessibly. The document then describes the basic syntax of HTML, including tags for the document type, HTML and body elements, titles, and paragraphs. It provides 10 lines of sample HTML/JQuery code to hide and toggle an element using a button. Finally, it notes

Uploaded by

api-283667529
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Programming B

Language: HTML/CSS
Programming Language Specifics
Overview
Answer the following in complete sentences:
1. What, specifically, is your language used for? HTML, CSS, and JQuery is
used for creating websites.
2. Who originally developed this language and for what purpose? Tim
Berners Lee created HTML and JQuery was released by Jon Resig.
3. What industries utilize your language? Every corporation that uses a
website uses these languages.
4. What training/certifications are required to code in this language as a
professional? An IT Degree is required to be a professional in the programming
field.
5. Salary: How much money do programmers in this language make? The
average pay of a programmer is $78,000 a year/
6. How might your language be used in innovative and futuristic ways? This
language could be used to organize important information into an easily
accessible way.
Syntax
Describe the syntax associated with your language. This can be completed in bullet,
table, or sentence format. This should be at least page long.
!DOCTYPE html declares the document type. (In this case, HTML)
html begins the HTML document.
head is the header of the HTML document which holds the title of the
webpage.
title is the title of the webpage.
/head ends the head section of the page.

body is the beginning of the visible parts of the HTML page.


p /p is a basic paragraph section of the body section.
/body ends the body section of the HTMl page.
/html closes the HTMl altogether.

Sample Code
Include at least 10 lines of sample code in your language and describe the outcome of
said code. Include the lines of code and the output of the code.
<!DOCTYPE html> This declares the document type.
<html> This is the beginning of the document.
<head> This is the upper invisible section of the document.
<script src="jquery-1.11.2.min.js"></script> This is the link to a JQuery source.
<link type="text/css" rel="stylesheet" href="style.css"/> This is the link to a CSS source.
<link type="text/javascript" src="java.js"/> This is the link to a Javascript source.
<title></title> This is the title of the website.
</head> This ends the head of the page.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
This links to another JQuery source.
<script> This begins the script section in which JQuery can be put.
$(document).ready(function(){
$("#panel").hide(0);
$("#flip").click(function(){
< That is the JQuery code.
$("#panel").slideToggle("slow");
});

});
</script> This is the end of the script section.

Criticisms and Drawbacks


Not all is well with your language. Describe 3 of the major pitfalls of your language.
HTML is easy to write, but any errors can be an issue if you dont know where you
screwed up.
Color scheming the page and getting all of the settings in the right place is time
consuming.
Unless it is used with CSS, or JQuery, or Javascript, it is not good looking.

You might also like