answersLogoWhite

0

I have some experience in HTML but not JavaScript.

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

BlakeBlake
As your older brother, I've been where you are—maybe not exactly, but close enough.
Chat with Blake
TaigaTaiga
Every great hero faces trials, and you—yes, YOU—are no exception!
Chat with Taiga
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao

Add your answer:

Earn +20 pts
Q: Do you have experience in Java or HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Coding for creating HTML editor using java applet?

<html> <body> java applets</body></html>


What does it mean to do HTML submit?

HTML means Hypertext Markup Language. The tag is used for various javascripts and Java programs. HTML submit is a form of a script in Java programming.


Does HTML code work in java script?

Yes it does. That is how client side validation of html control is possible using javascript


How are java applets and java applications similar?

we all know the general language which is universal to internet is HTML which is also called language of tags,(we hve nw many more languages) java language was made in keeping mind the scenario of internet and even it was called internet language the 2 parts of java are application and applets technically not approx the applet are programed with java language and distributed on internet and when we have to request for them the web server which understand HTML as a primary tool to interact wid user this HTML behave as interface so in nutshell vital role of HTML in java applets are to be a intermediator. hope u r satisfied wid answer.junaid niit


What is the relationship between Java and HTML?

Java code can be embedded into HTML and also HTML code can be embedded into java code through Java Server Pages Technology (JSP).eg: Java code inside HTML.Hello! The time is now This is someHelloJavaProgram.jsp , not someHelloJavaProgram.HTML pageeg: HTML code inside Java codeimport javax.servlet.*;import java.io.*;public class HelloServlet extends HttpServlet {public void doGet(HttpServletRequest incoming,HttpServletResponse outgoing)throws ServletException, IOException {outgoing.setContentType("text/HTML");PrintWriter out = outgoing.getWriter();out.println("Hello!");out.println("Hello Servlet World");out.println("");out.close();}}http://www.wellho.net/resources/ex.php4?item=j906/HelloServlet.java