FROM RAW TO MORE PROPER
CLICK AVAILABLE COPY BUTTON AT TOP-LEFT CORNER TO COPY THE PROMPT TEMPLATE
REWRITE INTO BLOGGER-ACCEPTED HTML SOURCE CODE
OPTION 1 (CLEAR AND DIRECT):
Rewrite the answer-content into HTML source code that complies with Blogger formatting rules.
OPTION 2 (MORE TECHNICAL):
Convert the answer-text into HTML source code that is fully compatible with Blogger (Blogspot) HTML standards.
OPTION 3 (MORE FORMAL):
Please rewrite the answer-content into properly structured HTML source code that adheres to Blogger code acceptance rules.
CONVERT/ENCAPSULATE INTO RESPONSIVE FULL-WIDTH WITH SCROLLABLE WIDTH (BOOTSTRAP MOBILE)
OPTION 1 (CLEAR AND STRUCTURED):
Redo this by converting and encapsulating it into a fully responsive, full-width layout with horizontal scrolling enabled (scrollable width only, non-scrollable height), including a Bootstrap-based mobile device version.
OPTION 2 (MORE TECHNICAL AND SPECIFIC):
Rebuild this into a fully responsive, full-width container with horizontal overflow (scrollable width only, fixed/non-scrollable height), and include a Bootstrap-optimized mobile device layout.
OPTION 3 (HIGHLY FORMAL / DEVELOPER-ORIENTED):
Please reconstruct this by encapsulating it within a fully responsive, full-width structure that supports horizontal scrolling only (no vertical overflow expansion), and integrate a Bootstrap-based mobile-responsive version.
TABLE-CODE
MAKE/CONVERT (ORDINARY) TABLE INTO SCROLLABLE WIDTH BUT NOT SCROLLABLE HEIGHT/FULL LENGTH TABLE:
VERSION A
<div style="overflow-x:auto; overflow-y:hidden; width:100%;">
<table style="border-collapse:collapse; white-space:nowrap; min-width:100%; border:1px solid #000;">
<style>
table th, table td {
border:1px solid #000;
padding-left:0.6em;
padding-right:0.6em;
}
</style>
VERSION B
<style>
.compress {
overflow-x: auto;
overflow-y: hidden;
width: 100%;
}
.custom {
border-collapse: collapse;
white-space: nowrap;
min-width: 100%;
border: 1px solid #000;
}
.custom th,
.custom td {
border: 1px solid #000;
padding-left: 0.6em;
padding-right: 0.6em;
}
</style>
<div class="compress">
<table class="custom">
<!-- table content -->
</table>
</div>
REFRESH "CURRENT PAGE" BUTTON
<!-- REFRESH BUTTON IN A POST ITSELF -->
<div style="margin-bottom:15px;">
<button onclick="location.reload();" style="background-color:#4CAF50; color:white; padding:10px 20px; border:none; border-radius:5px; cursor:pointer; font-size:16px;">
Refresh Page
</button>
</div>
MAKE "THICK" BORDER OF TAG HR:
(VISUAL DIVIDER ACHIEVED VIA CSS BACKGROUND-COLOR INSTEAD OF HR TAG)
<div style="background-color:dodgerblue; height:0.2cm;"></div>
INLINE CSS TO SET-UP ELEMENTS'
<span style="font-size:200%;">
<!-- 1st text-sentence here -->
<!-- 2nd text-sentence here -->
</span>
DISPLAY CODE SNIPPET WITH VS CODE STYLE SYNTAX HIGHLIGHTING
PROMPT TEMPLATE:
Generate the body content of an HTML page that displays a code snippet as text, with bright and visually appealing syntax highlighting similar to Visual Studio Code themes such as Monokai Bright or Night Owl. Use the <pre> and <code> tags for structure, and apply syntax coloring using <span> elements and CSS. The code snippet should only be displayed as text—do not execute it.
BILINGUAL LANGUAGES CONVERSION
Convert the provided content into a structured bilingual HTML table source code with exactly two columns:
- Left column: English version
- Right column: Bahasa Indonesia version
Requirements:
- Preserve the original meaning and formatting
- Use clean, semantic, and well-formatted HTML
- Ensure both columns are horizontally aligned row-by-row
- Optimize the output for Blogger/Blogspot compatibility
- Use responsive table styling when possible
- Keep the generated code concise, readable, and production-ready
- Maintain UTF-8 character compatibility
- Do not omit, summarize, or alter any content unless explicitly instructed
Apply proper table structure using <table>, <thead>, <tbody>, <tr>, <th>, and <td> in TABLE-TEMPLATE as follow:
<style>
.compress {
overflow-x: auto;
overflow-y: hidden;
width: 100%;
}
.custom {
border-collapse: collapse;
white-space: nowrap;
min-width: 100%;
border: 1px solid #000;
}
.custom th,
.custom td {
border: 1px solid #000;
padding-left: 0.6em;
padding-right: 0.6em;
}
</style>
<div class="compress">
<table class="custom">
<!-- table content -->
</table>
</div>
Comments
Post a Comment