describe the purpose of HTML within the coding of a website
language that defines the structure and content of a webpage
it also uses tags
describe the purpose of CSS within the coding of a website
this defines the style
it uses selectors like classes and IDs
it can be placed directly within HTML or externally in a file
what is javascript
an interpreted, scripting language and the program flow is determined by events like user actions, or sensor outputs
what can javascript modify
it can modify HTML languages used
what does the <form> tag do
used to create HTML form for user input, and it can contain <input></input>, <textarea>, <button>, <output> tags etc...
it is normally used alongside the script tag</output></button></textarea>
describe an IDE
integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development
what are the main things an IDE normally consists of
a source code editor, build automation tools and a debugger
build autmation tools (software utilities that automatically manage the transformation of source code into executable, deployable, or testable software by using scripting/configuration files (e.g., Maven, Gradle))
common features of IDE for developing programs (8)
common features of IDE for debugging programs ()
what is a scripting language
an interpreted language, where each command could be run on the command line
how would I write the HTML code for a:
light blue background, a blue coloured H3 title ‘Request a cake’, two form tags ‘cake description’ and ‘person requesting it’, and an ‘ok’ button at the bottom (8 lines)
(div style=”background-color: lightblue;”)
(h3 style=”color:blue;”)Request a cake:(/h3)
(form)
(p)Cake description (input type=”text”)(/p)
(p)Person requesting it (input type=”text”)(/p)
(p)(input type=”submit” value=”OK”)(/p)
(/form)
(/div)
how would i write the HMTL code for a purple H1 title and purple square border named ‘A page about cake’
(h1 style=”color: purple; border-style: solid; border-color: purple;”)A page about cake(/h1)