Skip to main content
6 answers
7
Asked 1343 views

How does one utilize HTML, CSS, and Java for computer science?

I was learning about HTML, CSS, and Java in school and at a computer tech camp called ID Tech Camp and was very interested in gaining an understanding on these computer languages. #computer #java #html #css

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

7

6 answers


1
Updated
Share a link to this answer
Share a link to this answer

Vibush’s Answer

HTML, CSS and Javascript are the core technologies that you will need to develop front end applications. You can build websites of all complexity.
All websites you see on the internet are based on these 3 technologies. There are many companies that specialise in developing and creating websites.

There are also a number of frameworks based on HTML, CSS and Javascript that you can use to help aid in development as well such as:
Angular JS
React JS
Vue.js
Bootstrap
and so on.

1
1
Updated
Share a link to this answer
Share a link to this answer

Matt’s Answer

HTML, CSS, and Java Script are widely used languages for developing front end websites and portals. If you want to learn more about coding with these languages, I would recommend completing courses in CodeAcademy.com.

1
1
Updated
Share a link to this answer
Share a link to this answer

Judy’s Answer

HTML and CSS are used for front end web development - HTML is the markup that specifies what elements are going on your page, and you make those elements look the way you want using CSS. Java is a programming language that is great for writing backend code, which can handle surfacing the data and logic you need to populate your frontend user interface. These are just some of the many ways you can use these languages.

1
1
Updated
Share a link to this answer
Share a link to this answer

Luis’s Answer

Good early Thursday morning everyone from San Antonio, Texas ;-)


Nigel,


Below are a couple of websites I used in my studies to gain understanding and some hands on experience with HTML, CSS, and JAVA:
http://www.tutorialspoint.com/
http://www.w3schools.com/


Another great site was codecademy, https://www.codecademy.com/, mentioned already above by Mr. Britt.


There are a number of tools, sites out there but nothing better than just practice. Practice. Yes, practice. Practice your coding skills when you can as the more you practice the better you will get with understanding and functionality.
Example - Build a website then just add/remove features using your coding skills in HTML, CSS, and JAVA. See what happens not only in your favorite web browser but in others also. Build an application and again change up functionality, appearance, etc....


But back to your question, "How does one utilize HTML, CSS, and Java for computer science?" - With a good technical skill set and understanding of how HTML, CSS, and JAVA work and work together; I honestly believe you can utilize these languages to do pretty much anything you want in computer science.


I hope this helps out Nigel but whatever you do; do not stop learning you have built yourself a good foundation now it is up to you and what you want to do.


Continued Success,


Luis Santana

1
1
Updated
Share a link to this answer
Share a link to this answer

Juwan’s Answer

You can majorly divide apps, services into frontend and backend. Frontend is normally what you directly see and interact (website, app it self), and backend is normally frontend is internally interacting (server).

  • HTML, CSS, and Javascript (Java is not Javascript!) are languages people use to build website (frontend). Sometimes you can also write simple iOS or Android app with HTML, CSS, and Javascript using frameworks like "React Native"
  • Java, Javascript and so on... almost every languages can be used to build backend.
  • Additionally, Swift or Objective-C is used for iOS app (frontend). Java, Kotlin or C++ is used for Android app (frontend).
1
0
Updated
Share a link to this answer
Share a link to this answer

Phani’s Answer

HTML and CSS : Both are used to display content on websites where html is core UI language and CSS is used for styling. Each html element you write rendered and displayed as text/image/video etc., and CSS apply styles like text size, color, width in UI etc.,

Java: Is a most popular programming language used to write server side programs for websites also it can be used to implement standalone desktop based applications like chats, games etc.,
0