Category: Html / CSS
-
Html / CSS Question
1] Image of any scientist with an alternate text as his name. 2] Create a paragraph related to information of that scientist. 3] Create a table of his inventions.
-
An engineering calculated
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>ENG-CALC PRO</title> <style> *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { –crt-green: #00ff41; –crt-dim: #00c032; –crt-dark: #003a0f; –crt-bg: #020c03; –amber: #ffb000; –amber-dim: #cc8a00; –red: #ff3a3a; –blue: #00cfff; –panel-bg: #0a0f0a; –border: #1a2e1a; –bezel: #1c1f1c; } html, body { height: 100%;…
-
An engineering calculator
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>ENG-CALC PRO</title> <style> *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { –crt-green: #00ff41; –crt-dim: #00c032; –crt-dark: #003a0f; –crt-bg: #020c03; –amber: #ffb000; –amber-dim: #cc8a00; –red: #ff3a3a; –blue: #00cfff; –panel-bg: #0a0f0a; –border: #1a2e1a; –bezel: #1c1f1c; } html, body { height: 100%;…
-
How to apply filter in any image tags ?
are you now how to apply filter property of css in which to change brightness of image.hint .img used filter and apply brightness inside pixel.
-
Need help understanding the main differences between Hubs, S…
Hi! I am currently studying for a computer exam and I’m a bit confused about networking hardware. Could someone please explain the basic differences between a Hub, a Switch, and a Router? It would be really helpful if you could explain: How they handle data differently. Which one is considered “smarter” and why. A simple…
-
Como centralizar um div horizontal e verticalmente?
<!DOCTYPE html> <html> <head> <style> .container { display: flex; justify-content: center; /* Centraliza horizontal */ align-items: center; /* Centraliza vertical */ height: 100vh; /* Altura total da tela */ } .box { width: 200px; height: 200px; background: #3498db; } </style> </head> <body> <div class=”container”> <div class=”box”>Centralizado!</div> </div> </body> </html>
-
Summarize Questions Clearly Using HTML and CSS in Fifteen Wo…
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title>Summary</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f4f4f4; } .card { background: #fff; padding: 20px 30px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); font-size: 18px; max-width: 400px; text-align: center; } </style> </head> <body> <div class=”card”> Summarize a question in…
-
it4044444444
I want you to solve question 2 following the requirements step-by-step and this is the solution from the question one
-
What is the difference between semantic and non-semantic HTM…
I am learning HTML5 and want to understand the practical difference between semantic and non-semantic elements. For example, tags like <section>, <article>, and <header> are called semantic elements, while <div> and <span> are considered non-semantic. I want to know how semantic elements improve website structure, SEO, accessibility, and code readability compared to non-semantic elements. Also,…
