How to create table in wordpress without plugin? [closed]

I am not sure i understand the question but if ur looking to create a table you can do it with simple HTML and CSS. Take a look at this: https://www.w3schools.com/html/html_tables.asp

Again, if you need this in all posts then you might consider adding this code inside your theme’s loop.php (or other equivalent file which is generating single posts).

Hope this helps!

Addition – 16 June:

I will consider the table “india post recruitment 2017 apply online” in the link as an example. Suppose you created the posts where “Organization” post title and “Qualification, Post Name, No of Posts & Last Date” are the custom meta fields. You can enable them from the screen option available on top of add post page.
Add appropriate custom field name and value. Example:

qualifiation: 10th
post-name: Gramin Dak Sevaks
no-of-posts: 1193
last-date: 24-05-2017

Once you add these and save the post, you can pull the value using the get_post_meta() function. It goes something like this:

$qualification = get_post_meta($post->post_ID, ‘qualification’, TRUE);

Now $qualification will have the value you saved as custom field. Repeat the same for “post-name”, “no-of-posts” & “last-date”

Put the values in table:

<table>
<tr>
    <th> Organization</th>
    <th> Qualification</th>
    <th> Post Name</th>
    <th> No of Posts</th>
    <th> Last Date</th>
  </tr>
<tr>
    <td><?php post_title(); ?> </td>
    <td><?php echo $qualifiation; ?> </td>
    <td><?php echo $post-name; ?> </td>
    <td><?php echo $ no-of-posts; ?> </td>
    <td><?php echo $ last-date; ?> </td>
  </tr>
</table>

This will work assuming you are using WP default loops to generate posts. Please let me know if this helps.