- Joined
- Aug 16, 2022
- Messages
- 61
- Reaction score
- 2
Hi everybody,
I just know this is gonna bite me.
There is supposed to be only one <body> </body> tag in an HTML page.
The example below is supposed to be a PopUp rectangle, a Log-In form actually. It will be called from within another
HTML document which already has its' own notion of <body>
What can I do to avoid any issues from the second <body> tag?
I'm pretty sure I should not do it the way I am setting it up.
I just know this is gonna bite me.
There is supposed to be only one <body> </body> tag in an HTML page.
The example below is supposed to be a PopUp rectangle, a Log-In form actually. It will be called from within another
HTML document which already has its' own notion of <body>
What can I do to avoid any issues from the second <body> tag?
I'm pretty sure I should not do it the way I am setting it up.
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<style>
body {
font-size: 0.75rem;
position: relative;
left: 6.25rem;
height: 12.5rem;
width: 50rem;
}
</style>
</body>
</html>