Category: Html / CSS
-
Impact of Study Habits on Academic Performance of Senior Hig…
You should include important information such as the background of your question, what you are trying to do, what problem you encountered, and any steps you already tried. Describe the situation in detail so the reader knows exactly what you need. If your question is about coding, you should also include the programming language, version,…
-
Kya ap ko html/css code chahiye
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>My Simple App</title> <style> /* CSS: This makes it look like a modern app */ body { font-family: ‘Segoe UI’, sans-serif; background-color: #f0f2f5; display: flex; justify-content: center; padding: 20px; } .app-container { background: white; width: 350px; border-radius: 20px; shadow: 0 10px 25px rgba(0,0,0,0.1); overflow:…
-
html coding book
HTML (HyperText Markup Language) aik markup language hai jo websites aur web pages bananay ke liye use hoti hai. Iski madad se hum web page ka structure tayar kartay hain, jaise headings, paragraphs, images, links aur tables. HTML tags ke zariye browser ko bataya jata hai ke content screen par kaise dikhana hai. Agar chaho…
-
Html / CSS Question
want to work as a tutor on Studypool and sell high-quality assignments.I am looking for guidance on where to find legitimate, original assignment work, how to choose high-paying questions, and best practices to avoid plagiarism while meeting Studypools policies.Any tips on profile optimization, bidding strategies, or subject selection would be helpful. Requirements:
-
index.html style.css
<html> <head> <title>Layout web 3 kolom</title> <body> <table border=”1″ align=”center”> <!–navbar–> <tr> <td colspan=”3″ height=”30px”>NAVBAR</td> </tr> <!–header–> <tr> <td height=”150px” width=”50px”>LOGO</td> <td colspan=”2″ height=”150px”>BANNER</td> </tr> <!–navigasi & searchbox–> <tr> <td colspan=”2″ width=”800px”>NAVIGATION</td> <td width=”300px”> <form> <input type=”search” size=”50″ placeholder=”Search…”> <input type=”submit” value=”Search”> </form> </td> </tr> <!–content–> <tr> <td colspan=”2″ height=”400px” width=”800px”>CONTENT</td> <td width=”300px”>SIDEBAR KANAN</td> </tr>…
-
layout kolom 2
<html> <head> <title>Layout web 2 kolom</title> <body> <table border=”1″> <!–header–> <tr> <td colspan=”2″ height=”120px”>HEADER</td> </tr> <!–navigation–> <tr> <td colspan=”2″ height=”30px”>NAVIGATION</td> </tr> <!–content–> <tr> <td height=”400px” width=”720px”>CONTENT</td> <td height=”400px” width=”360px”>SIDEBAR KANAN</td> </tr> <!–footer–> <tr> <td colspan=”2″ height=”200px”>FOOTER</td> </tr> </table> </body> </head> </html> Requirements:
