HTML Assignment Practical 3
1. Simple Webpage with Inline CSS
Explanation:
Inline CSS is applied directly within HTML elements using the style
attribute.
2. Webpage with Internal CSS
Explanation:
Internal CSS is defined within the <style>
tag in the <head>
section of the document.
3. Webpage with External CSS
HTML:
CSS (styles.css
):
Explanation:
The external stylesheet is linked to the HTML document using the <link>
tag.
4. Responsive Webpage with Media Queries
Explanation:
Media queries are used to apply CSS rules based on screen size.
5. Webpage with a Navigation Bar
Explanation:
The <nav>
tag is styled to create a navigation bar, with hover effects added using CSS.
6. Webpage with a Styled Button
Explanation:
CSS styles the button with colors and hover effects.
7. Webpage with Grid Layout
Explanation:
The grid layout organizes content into columns and rows.
8. Webpage with a Card Design
Explanation:
CSS styles the card with borders, padding, and shadows.
9. Webpage with Flexbox Layout
Explanation:
Flexbox is used to align items horizontally with spacing.
10. Webpage with CSS Animations
Explanation:
CSS animations are created using @keyframes
and applied to elements using the animation
property.
Comments
Post a Comment