+ 1
How i Fill This?
<html> <head><title>My Page</title> < head> > <body> <table align =" center "> <tr><td> <ul> <li>item</li> < > </td></tr> < > </table </html>
4 Answers
+ 9
Jordan Heinz
Easier :
<tr> <!-- start 1st row -->
<td> <!-- start 1st coloumn -->
Your data is here..
</td> <!-- end of 1st coloumn -->
</tr> <!-- end of 1st row -->
About the list.
You have an unordered list (<ul>).
The list start with the main tag <ul>, then coming the list item with between the <li> tags.
For add more list item, add more like
<ul>
<li>your list item1 </li>
<li>your list item2 </li>
</ul>
<ul> >>for unordered list
<ol> >>for ordered list.
I hope i could help a little. đ
Take a look here, it may can help to you also:
https://code.sololearn.com/W3qRxwj4UF36/?ref=app
Good luck for your journey here! đđ
+ 5
Jordan Heinz what is the point of your question? đ - sorry. I meant, what do you like to know about this html code with included a table what contain an unordered list?
Maybe you wanted to ask, that where to can you put your content?
So i offer you to choose the html course and finish it >>so you'll be able to read, use, and create the Basic level of the websites.
But, so this (the html) is just about the "frame" of your webpage.
So you can put your content in it, but for making a good design, you need to take the CSS course also.
CSS for design, but how we know, the better looking means bigger potential >>so at the end, it means more money..
Also go for learn javascript >> it's used for the counts and like for animations.
Okay.. So back to your question..
between the <title> tags, you can put the title of your webpage.
between the <tr> tags you need <td> tags. You can put your datas into the cells of the table with put it between <td> tags.
+ 4
I don't know what you want do but i recommend you learn CSS and javascript (you can find java and javascript, so don't think that they are the same)