Programming B Language: HTML/CSS Programming Language Specifics
Programming B Language: HTML/CSS Programming Language Specifics
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.
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.