The Compelling Reasons to Learn Web Design In an era dominated by the digital realm, the ability to craft visually appealing and functional websites is a valuable skill that transcends industries. Learning web design is not just about creating aesthetically pleasing pages; it opens doors to a world of creativity and opportunities. In this blog, we'll delve into the compelling reasons why aspiring individuals should consider learning web design and how it can pave the way for personal and professional growth. Express Your Creativity: Web design is an art form that allows you to express your creativity in a digital space. From choosing color palettes to selecting fonts and arranging elements on a page, web designers have the power to create visually stunning and unique experiences. Learning web design provides a canvas for self-expression, enabling you to bring your ideas to life and leave a lasting impression on users. Meet the Demands of the Digital Age: The digital landscape is
Addition two number in javascript
- Get link
- Other Apps
Dheeraj Kumar
learn web design
-
Addition two number in javascript
1.we have know that what is JavaScript?
2.JavaScript is a client server language JavaScript use for formatted design and backend design JavaScript is a lightweight language for
make a web program we can create JavaScript.
JavaScript is a independent language.
3.write a code for addition
4.all code write in <script> all code write </script>
5.<script>
var a = 60;
var b = 40;
var c = a+b;
document.write(c);
</script>
6.output = 100
7. this code write in head section.
8.var meant variable
9.document.write use for show a number if we are write document.write("c"); then output = c
10.integer case we write document.write(c);
- Get link
- Other Apps
Popular posts from this blog
what is html
Dheeraj Kumar
learn web design
-
1.What is html HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags, but use them to render the content of the page 1.All HTML documents must start with a document type declaration: <!DOCTYPE html> 2.The HTML document itself begins with <html> and ends with </html> . 3.The visible part of the HTML document is between <body> and </body> . 2.HTM or HTML Extension? When you save an HTML file, you can use either the .htm or the .html extension. The .htm extension comes from the past when some of the commonly used software only allowed three letter
Comments