Techoceanhub logo

Year 2021

Understand the Events in Vue3 JS – 2

This chapter provide the basic example of event handling in Vue JS Example: In this example, we can see, how to call method on button click event for that I have added 2 buttons, Add and Subtract to increase and…

Introduction of Vue 3 JS – 1

This chapter provide the basic example, how to create the Vue 3 JS app You can read more detail about the vue3 JS installation Example: In this example, we can see the basic tag to create Vue3 app, and…

Basic Git commands

This is important thing in software Development to have knowledge about Basic Git command. Git Task Command Tell Git who is using Configure the author name and email address to be used with your commits. Note that Git strips some characters (for…

How to create a Table in the HTML

Html Table allow web developer to create tabular data format having multiple rows and column. Tables Tag Description <table>  a table tag <caption>  a table caption <th> a header cell in a table <tr> a row in a table <td>…

Introduction to HTML

HTML stands for Hyper Text Markup Language used by the browser to manipulate images, contents, texts and other content, in order to display it in the required format. Also, it describes the structure of a Web Page. :: Below are…

Html forms and input type

The <form> Element The HTML <form> element is used to create an HTML form for user input: <form> <input type=”text” name=”txtFname”/></form> The <form> element is a container for different types of input elements, such as: text fields, checkboxes, radio buttons, dropdown, submit buttons, etc.…

Implementing Video tag.

As we saw a <audio> tag in HTML. Video tag is also important as we can embed a video in HTML as well as audio. The HTML Video element ( <video> ) embeds a media player which supports video playback into the document. You…

Implementing Audio tag in HTML.

The audio tag is one of the important tags as it is used to implement sound or audio in the document as well as, in any project. The <audio> tag contains one or more different audio sources. The browser may support in…