I want to create a table in html and I mantion my code below.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
</body>
</html>
This is my expected output:
Column A | Column B |
---|---|
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
3
Answers
Try this for make table,
You can learn how to create html table here.
But I’ll leave this sample so you can move on.