104k views
4 votes
Which programming language is used to create web pages?

a. Python
b. Java
c. HTML
d. Ruby

2 Answers

2 votes

Answer:

HTML

Step-by-step explanation:

HTML is used to create webpages and how they look, and CSS is used to style them.

Languages like Python, Java ,and RubyOnRails are used also used for web apps but they are used in the backend

User Ivan Debono
by
7.9k points
4 votes

Final answer:

The programming language used to create web pages is HTML, which structures the content on the web. Python can be used in web development but not for directly creating web pages.

Step-by-step explanation:

The programming language used to create web pages is HTML (Hypertext Markup Language). HTML is a markup language that provides the structure and content of a web page. It is responsible for defining the elements of a page, such as headings, paragraphs, images, links, and more.

While languages like Python, Java, and Ruby are commonly used in web development, HTML serves as the backbone for web pages. It defines the structure, whereas languages like CSS (Cascading Style Sheets) and JavaScript add style and interactivity to the page, respectively

The programming language used to create web pages is c. HTML (HyperText Markup Language). HTML is the standard markup language for creating web pages and web applications. It structures the content on the web and is used alongside CSS (Cascading Style Sheets) and JavaScript to design the look and behavior of a website. Although Python is a versatile programming language that can be used in web development, it is not directly used to create web pages; instead, frameworks like Django and Flask can utilize Python for server-side scripting to serve web pages created with HTML

User Brian Kennedy
by
7.5k points