#### HTML and CSS Code for Portfolio Item News Video Stories
HTML:
Portfolio
My Portfolio
Portfolio
Explore my latest work and projects.
News
Stay updated with the latest industry news.
Videos
Watch engaging video content.
Stories
Discover inspiring stories and articles.
CSS (styles.css):
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 1em;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1em;
}
section {
padding: 2em;
}
footer {
text-align: center;
padding: 1em;
background-color: #333;
color: #fff;
}
This code creates a simple HTML page with a navigation menu to showcase portfolio items, news, videos, and stories. The CSS file (styles.css) provides styling for the HTML elements to enhance the visual appeal of the page.