Techoceanhub logo

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…

Learn how to handle event in VueJs.

In this post, I have tried to explain about different events in VueJs. In  simple words events are action  triggered by system for example: Mouse Events Keyboard Events Mouse events can be recognized as double click, or on hover event…

What is data class in Kotlin- Chapter-7

We have made classes in Java, in the same manner, there are classes in Kotlin as well but they are fully known as Data Classes in kotlin. A data class is something that holds data for us. These types of…

Let’s study about operators in kotlin.Chapter-6

There are many operators in every language the same applies to Kotlin also. There are different operators in kotlin like arithmetic, assignment, comparison  operators etc. Arithmetic operators +    —    Addition Operator –     —   Subtraction Operator    …

Best ways for designing a responsive webpage

Responsive web page is a page that creates dynamic changes to its appearance, depending on the screen size and orientation of the device being used to view it. In responsive design, page elements reshuffle as the viewport grows or shrinks.…