UrbanPro

Learn Java Training from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

I know HTML, CSS, and a bit of JavaScript. What should I learn next?

Asked by Last Modified  

Follow 21
Answer

Please enter your answer

Computer Science Teacher

HTML,CSS and Javascript are Tools which are used for Front-End Web Development. The next step is to learn the following: 1)Learn Javascript Frameworks like node.js,react.js,angular.js etc. 2)Learn Back-End Web Development Tools like PHP,Python,Ruby on Rails,MongoDB etc. 3)Learn about Advanced CSS 3 and...
read more

HTML,CSS and Javascript are Tools which are used for Front-End Web Development.

The next step is to learn the following:

1)Learn Javascript Frameworks like node.js,react.js,angular.js etc.

2)Learn Back-End Web Development Tools like PHP,Python,Ruby on Rails,MongoDB etc.

3)Learn about Advanced CSS 3 and Bootstap 4 

First know your purpose or ultimate goal in life and then learn only those tools and technologies which will help you in achieving your goals. All the Best!

Thank You :)

 

read less
1 Comments

You can aim for UI Engineer (Front-end), you need to have a better understanding of JavaScript with libraries like JQuery, Ajax and NodeJs frameworks like Angular, React, Vue Etc.There is much demand for it in recent years, for example, Netflix, PayPal completely build on JavaScript.or you can add server-side...
read more

You can aim for UI Engineer (Front-end), you need to have a better understanding of JavaScript with libraries like JQuery, Ajax and NodeJs frameworks like Angular, React, Vue Etc.

There is much demand for it in recent years, for example, Netflix, PayPal completely build on JavaScript.

or you can add server-side programming languages like Java, PHP, Python and become Full stack developer

read less
Comments

Selenium in C# - Complete Automation Framework With Reports From Scratch | Code Management Github

if you would like to choose UI developer as your career just go head with Angular 2+ . there’s is much opportunities are there currently in industry
3 Comments

Hi, if you are planning for front end developer then html, css, javascript, jquery, node js and java programming are required. Thanks.
Comments

Learning HTML, CSS & JavaScript will give a bit access to Website Designing even for designing you will need to learn JQuery once you completed with Webdesigning (Front end Part) go for Backend Development - PHP or Python or Mean Stack. 1. Front End - Web Design : itvedant : It help in create beautiful...
read more

Learning HTML, CSS & JavaScript will give a bit access to Website Designing even for designing you will need to learn JQuery once you completed with Webdesigning (Front end Part) go for Backend Development - PHP or Python or Mean Stack.

1. Front End - Web Design : itvedant : It help in create beautiful and stunning websites by learning HTML and CSS and make it interactive with knowledge of JavaScript and jQuery.

a. HTML5 +CSS3 : Learn to create beautiful and trendy websites using HTML5 and CSS 3
b. Javascript : Make your websites more interactive using JavaScript. You can use JavaScript to validate your forms, Manipulating content, changing style dynamically, showing / hiding content of web page and for making ajax requests.
c. Twitter Bootstrap : Bootstrap is CSS and JavaScript framework to develop responsive websites.
d. JQuery : Learn jquery and add some beautiful image sliders to your website.
2. Backend -
a.PHP Web Development : a. PHP : Learn to create real world application using Object Oriented Programming in PHP.
1.PHP MySQL : itvedant : Develop your machine learning projects, IOT projects and web application by learning Python programming language.
a.Integrating payment gateway / SMS gateway to your website
b.Creating Captcha images or adding watermarking on images
c.Sending emails from your emails
d.Generating excel / pdf reports
e.Maintaining security of your website
2. Wordpress : Learn worlds most famous content management and blogging PHP framework.
3. Yii Framework : As a PHP developer you should know at least one mvc based PHP framework. Yii2 is one of the most popular and widely used mvc framework. By learning Yii2, you can develop large PHP applications using less efforts and time.
b. Mean Stack : itvedant : It contain Mongo DB, Express .Js, Angular and Node .js
1.Mongo DB which used for database
2.Express .js fro back end development
3.Angular for Front end development
4.Node .js for backend development that can handle high traffic easily.
c. Python : By learning Python Programming Language, helps to develop machine learning projects, IOT projects.
1. Python:
2. Machine Learning
3. Django : jango is the most popular framework not only in python but also seeing the current web development trend.

 

read less
Comments

Learn Angular.
3 Comments

You should learn Bootstrap and angular JS.
Comments

13yrs exp. Math, Computers, Science, English Trainer. Improvement In Scores Guaranteed.

start building a small web sites, for learning sake.
Comments

Come for knowledge go for earning

you should learn python
Comments

Learning is an enjoyment if we see it in an angle

What you want to become? Web application developer? means www.iisc.ac.in, www.infosys.com etc Tester? one who tests the applications As you already know HTML, CSS, go for angular (NOT Angular JS). one data basse language (Ex: SQL Server)
Comments

View 8 more Answers

Related Questions

public class X { public static void main(String [] args) { X x = new X(); X x2 = m1(x); /* Line 6 */ X x4 = new X(); x2 = x4; /* Line 8 */ doComplexStuff(); } static X m1(X mx) { mx = new X(); return mx; } } After line 8 runs. how many objects are eligible for garbage collection?
Only one. After line 8 the original object referred to by x2 is dereferenced and ready for garbage collection. In m1(), mx ignores the object passed as argument and refers to a new object which is returned.
Srikanth
What is selection sort in java?
Selection sort is a sorting algorithm. You can implement this algorithm in any language. The basic idea is to select the smallest element of the array and placing it to the head of array. This step needs...
Snehashis
Which is the best programming language to learn in today's era? Java, C,C++, Python or any else?
Java is the best language because it is platform indepedent and opensource u can download java software at anywhere
Swati
0 0
5
In what ways is C# similar to Java?
Both are OOPs based, and can be used for software development as well as web application server scripting language.
Aparna
0 0
5
What are Access Specifiers in Java?
There are no access specifiers in java as like in c++. Now you can think that, public, private protected and default are what all these. These all called as access modifiers. Everywhere these four...
Kadar
0 0
9

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Software Testing
Software testing is a process of executing a program or application with the intent of finding the software bugs. It can also be stated as the process of validating and verifying that a software program...

Mastering in Java Programming
Core java topics What is Java?Execution Model Of JavaBytecodeHow to Get Java?A First Java ProgramCompiling and Interpreting ApplicationsThe JDK Directory StructureUsing Eclipse Data types and Variables What...

Final modifier in Java
Can’t change value of variable if marked as final. It is best practice to mark method parameter as final if its value will not changes. Variable must be initialize either using Initializer block...

Programing Languages Learning Tricks
You want to learn that new language or library or framework as soon as possible, right? That’s understandable. Fortunately, there are a handful of tips that can help you to better retain all of that...

Harshal G.

0 0
0

TestNG Annotations and its sequence
public class TestNGAnnotations { @BeforeMethod public void beforeM() { System.out.println("Before Method"); } @AfterMethod public void afterMethod() { System.out.println("After Method"); } @BeforeClass...
S

Sarthak C.

0 0
0

Recommended Articles

Java is the most famous programming language till date. 20 years is a big time for any programming language to survive and gain strength. Java has been proved to be one of the most reliable programming languages for networked computers. source:techcentral.com Java was developed to pertain over the Internet. Over...

Read full article >

Designed in a flexible and user-friendly demeanor, Java is the most commonly used programming language for the creation of web applications and platform. It allows developers to “write once, run anywhere” (WORA). It is general-purpose, a high-level programming language developed by Sun Microsystem. Initially known as an...

Read full article >

In the domain of Information Technology, there is always a lot to learn and implement. However, some technologies have a relatively higher demand than the rest of the others. So here are some popular IT courses for the present and upcoming future: Cloud Computing Cloud Computing is a computing technique which is used...

Read full article >

Java is the most commonly used popular programming language for the creation of web applications and platform today. Integrated Cloud Applications and Platform Services Oracle says, “Java developers worldwide has over 9 million and runs approximately 3 billion mobile phones”.  Right from its first implication as java 1.0...

Read full article >

Looking for Java Training Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you
X

Looking for Java Training Classes?

The best tutors for Java Training Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Java Training with the Best Tutors

The best Tutors for Java Training Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more