👤

report ang maling sagot​

Report Ang Maling Sagot class=

Sagot :

HTML or HyperText Markup Language is the most common markup language used primarily in displaying text on a website. It is commonly accompanied by CSS in order to customize how the browser will display the content. It usually has the following order of content:

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <title>Document</title>

</head>

<body>

</body>

</html>

CSS or Cascading Style Sheets, is the tool that is used in oder to style a document. HTML by itself does not look appealing, and so we need to specify the styling for each elements to alter the look and feel of the website. An example of a CSS block is:

p {

   color: rgb(0, 0, 0);

   font-size: 13px;

   margin: 20px 10px;

   font-family: Arial;

}

Java is a general-purpose, class-based, object-oriented programming language designed for having lesser implementation dependencies. It is a computing platform for application development. Java is fast, secure, and reliable, therefore. It is widely used for developing Java applications in laptops, data centers, game consoles, scientific supercomputers, cell phones, etc. - James Hartman 2021

PHP stands for Hypertext Preprocessor. It is widely used language and can be embedded into HTML. PHP pages contain HTML with embedded code, making it much easier to manage.

.NET, made by Microsoft, is a framework used to create and run software applications. .NET apps can run on many operating systems, using different implementations of .NET. .NET Framework is commonly used for running .NET apps on Windows.

Python is commonly used for developing websites and software, task automation, data analysis, and data visualization. Since it's relatively easy to learn, Python has been adopted by many non-programmers such as accountants and scientists, for a variety of everyday tasks, like organizing finances.

JavaScript is a scripting or programming language that allows you to implement complex features on web pages (every time a web page does more than just sit there and display static information for you to look at) displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc. Commonly used with HTML and CSS.