How i Fill This? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 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>

18th Nov 2018, 2:14 PM
Jordan Heinz
Jordan Heinz - avatar
4 ответов
+ 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! 😉👍
20th Nov 2018, 10:27 AM
Donthack
Donthack - avatar
+ 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.
20th Nov 2018, 10:17 AM
Donthack
Donthack - avatar
+ 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)
18th Nov 2018, 4:29 PM
JONYXD111
JONYXD111 - avatar
18th Nov 2018, 2:29 PM
Vedant Bang
Vedant Bang - avatar