How can I place an HTML table, embedded with a YouTube video, centered as the last item on the home page?
Thank you,
Robert![]()
How can I place an HTML table, embedded with a YouTube video, centered as the last item on the home page?
Thank you,
Robert![]()
I await your thoughtful response.
Thank you
You dont need a table, you tube uses an iframe in its embed code, just place it between a "center" tag![]()
Still, you don't need (and shouldn't use) a table for placing text or other elements on the page. Wrap the text in a div with a class tag, and possibly another div to enclose all of the content, then style those divs in your stylesheet.
Say you put your YouTube content in the file, inside a div like this:
In your stylesheet, add rules likeCode:<div id="youtubeContent"> <p class="youtubeDescription">Your text about the video.</p> <...your youtube content code...> </div>
using whatever properties you want to set for the elements.Code:#youtubeContent {margin: auto; text-align: center;} .youtubeDescription {color: #667722; font-size: 1.2em;}