Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632094 Views

Latest files of /cody/Arshi81099/mini-project-using-css

photo.png cody/Arshi81099/mini-project-using-css/photo.png
106 Views
0 Comments
Media file
README.md cody/Arshi81099/mini-project-using-css/README.md
193 Views
0 Comments
# mini-project-using-css

#Overview
This mini project is a simple web page created using HTML and CSS. The project demonstrates basic web design principles and styling techniques, providing a foundation for further development in web technologies.

#Features
Responsive Design: Adapts to various screen sizes for optimal viewing on different devices.
Modern CSS Styling: Utilizes flexbox, grid, and other modern CSS features for layout and design.
style.css cody/Arshi81099/mini-project-using-css/style.css
99 Views
0 Comments
*{
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
.main_box {
background: url("photo.png");
height: 100vh;
index.html cody/Arshi81099/mini-project-using-css/index.html
276 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Project</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />