We know whether to directly add the code to the touchpad when you can use html on NetEase Blog, but the effect is not very good. That's because the code is not arranged well. Now let me say that using tables can display the special effects well.
In html syntax, table (i.e. table) is an indispensable part. Without it, it is difficult to display the visual effects of web pages. Now I will talk about table. Here is a table with two rows and two columns:
The code is: <TABLE style=BORDER-RIGHT: 1px solid; BORDER-TOP: 1px solid; BORDER-LEFT: 1px solid; BORDER-BOTTOM: 1px solid cellSpacing=1 cellPadding=1 width=100% border=1>
<TBODY>
<TR>
<TD> </TD>
<TD> </TD></TR>
<TR>
<TD> </TD>
<TD> </TD></TR></TBODY></TABLE>
tr represents row, td represents column, border represents thickness (0 means not displayed), and represents space. Here, the width of the table is preferably 100% (width=100%). Do you understand now? If you understand, you can add the code you want to <TD> </TD>.
For example: <TABLE style=BORDER-RIGHT: 1px solid; BORDER-TOP: 1px solid; BORDER-LEFT: 1px solid; BORDER-BOTTOM: 1px solid cellSpacing=1 cellPadding=1 width=100% border=1>
<TBODY>
<TR>
<td><marquee>Welcome to ω.⑨s.Entertainment Home</marquee></td>
<TD> </TD></TR>
<TR>
<TD> </TD>
<TD> </TD></TR></TBODY></TABLE>
The effect is:
Just like that, the others.
Let me say one more thing: When we made the table, there are some forms like this:
The method is:
<table border=1 width=100%>
<tr>
<td colspan=2> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
and
<table border=1 width=100%>
<tr>
<td rowspan=2> </td>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
If you look closely, you will find colspan=2 and rowspan=2, right? ! ! !
You want 2 parameters, and you also need to set it yourself》
<table border=1 width=100%>
<tr>
<td colspan=2><marquee>Welcome to ω.⑨s.Entertainment Home</marquee></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
and
<table border=1 width=100%>
<tr>
<td rowspan=2><marquee>Welcome to ω.⑨s.Entertainment Home</marquee></td>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
The effects are:
and
Note: Other codes must be added in <td>...</td>, which is dedicated to those friends who don’t know much about html! !