开发者

HTML page (Only with Tables, no css allowed)

开发者 https://www.devze.com 2023-01-12 07:55 出处:网络
I am trying to create a page as shown in picture. Now only t开发者_如何学运维ables are allowed and no css. I am having difficulty in understanding how to achieve as it is in original image. Any help p

I am trying to create a page as shown in picture. Now only t开发者_如何学运维ables are allowed and no css. I am having difficulty in understanding how to achieve as it is in original image. Any help please?

HTML page (Only with Tables, no css allowed)

This is what I have written

<html>
<head>
<title>HTML</title>
</head>
<body>
<table height="350" width="773" background="bg.jpg" >
<tr><td><h1 align="right">Welcome to Full Moom Site</h1></td></tr>
<tr><td><h3 align="center">Music Company Full Moon</h3></td></tr>
<tr><td><p align="right">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vulputate, odio ut auctor porta, quam urna convallis leo, ac ultricies felis mi eget mi. Pellentesque consequat nisl et metus tempor sodales. Quisque ultrices metus consectetur sem placerat eget molestie ipsum gravida. Duis scelerisque augue sed sem venenatis id congue mauris vehicula. </p></td></tr>
</table>
</body>
</html>


You won't get me to do the work for you :-) , but I'll offer up this advice. You'll need to slice up your background image into four parts, use colspan and rowspan on your <td> and <tr> tags, and border="0" on the <table> tag to get it to work. Here's an example, including a possible grid for your table layout. You'll need to move your navigation down a little bit; otherwise, you'll need a fifth slice for the left end of the blue arc.

HTML page (Only with Tables, no css allowed)

0

精彩评论

暂无评论...
验证码 换一张
取 消