answersLogoWhite

0

You can use CSS to define elements and place those elements in a table configuration. The other option would be to create an HTML table. Fill the table cells with the data and leave cells blank to display the spaced on the table that do not include elements. You can see a Periodic Table HTML code by going to chemicool dot com and viewing the source.

User Avatar

Wiki User

10y ago

What else can I help you with?

Continue Learning about Natural Sciences

Is br a element?

No, Br is not a metal. It is a type of nonmetal and halogen that is a red liquid at room temperature.


Horizonal rows are called?

Just rows? Vertical ones are columns. In HTML they are <tr> 's, if that's what you mean. Seeing you tagged it as chemistry, you may mean in the priodic table? Those are called periods.


Where is the header row in a table?

A table header, used in HTML is used to differentiate between a regular table row and a special table row. It has 2 different implementations. One by wrapping <thead> and </thead> around the table row tags (<tr></tr>) you are going to be using as the 'heading' row. Similar to this example. <thead> <tr><td colspan="3" style="font-size: 2em;">Big Table Title</td></tr> <tr><td>Column 1</td><td>Column 2</td><td>Column 3</td></tr> </thead> Browsers treat rows inside of <thead> slightly differently then normal table rows. For example if the table spans multiple pages when the table is printed, then the rows inside of <thead> will show up at the top of each page that contains parts of the table. In addition, it presents a suitable target for stylesheets, if you use contextual selectors like this one thead td,thead th { background-color: #cccccc; } Another implementation of table headings is by using the <th></th> tags inside of a <tr></tr> bracket. (e.g.: <tr><th>Column 1</th><th>Column 2</th><th>Column 3</th></tr>). The <th> tag behaves very much like <td>, however text inside of <th> is bold and centered by default. Of course, you can always use stylesheets to change the way that TH is styled.


What is used to create the simulated snow inside snowglobes?

Simulated snow inside snowglobes is usually made from plastic or glass materials that resemble snowflakes or glitter. These materials are carefully selected to create a snowy visual effect when shaken or stirred inside the snow globe.


How many lighyears from earth is Pluto?

http://www.blurtit.com/q572026.html

Related Questions

How do you create homepage or web page from event in table format using HTML?

Homepage can be created using HTML or various other languages. <table> can be used to create tabular format in HTML.


Can you able to create table using css?

You can style a table in CSS, HTML is what you would use to create it though.


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


How do you create and use an HTML table?

HTML tables are created by the <table> command. Inside the table we can use tags like <li>, <ul>,<ol> etc.


How do you create our own page by using HTML page structure?

You can create your HTML page easily by using tags. Tags are the elements by writing them, you can create your views.


What does a CSS table have to do with HTML?

HTML is a markup language used when one wants to create a website. Cascading style sheets or CSS is a style sheet language that one can use with HTML to create different kind of tables and pictures to the web page. Using CSS is easier than using HTML when creating tables for a website. It also makes updating the page easier.


What type of pages are created with the help of HTML?

You can create any type of pages using HTML because html is a language used to create web pages for display in browser. And you can also create a static page by using HTML.


Using only Html you can create?

Web pages.


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>


How to create thumbnail images using HTML and css?

Thumbnail images can be made using HTML and CSS. HTML will import the image and CSS would give the thumbnail style.


What does it mean to have experience using HTML?

HTML is HyperText Markup Language. It is a language used to create web pages. If you have used it a lot and know how to use it properly you can create very good web pages. You would then have experience using HTML.


Can you create a database with only a form?

Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.