-
Notifications
You must be signed in to change notification settings - Fork 0
added e-commerce files #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
| </ul> | ||
| </nav> | ||
| <a href="cart.html"><img src="images/cart.png" width="30px" height="30px"></a> | ||
| <img src="images/menu.png" class="menu-icon" onclick="menutoggle()"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add alt attribute
| <div class="container"> | ||
| <div class="row"> | ||
| <div class="col-2"> | ||
| <img src="images/image1.png"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add alt in img tags.
| position: absolute; | ||
| bottom: 0; | ||
| left: 50%; | ||
| transform: translateX(-50%); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
group this properties.
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap" rel="stylesheet"> | ||
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
| </head> | ||
| <body> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is your prettier working? @faikp
| </div> | ||
| <form id="loginform"> | ||
| <input type="text" placeholder="Username"> | ||
| <input type="password" placeholder="Password"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this placeholder attributes do ? @faikp
| <img src="images/play-store.png" alt=""> | ||
| <img src="images/app-store.png" alt=""> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add alt @faikp
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>cart page - RedStore</title> | ||
| <link rel="stylesheet" href="style.css"> | ||
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap" rel="stylesheet"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use import url in css file
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700&display=swap");
| <p>$50.00</p> | ||
| </div> | ||
| </div> | ||
| <!-- ------ offer ------ --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this section occupies full width of the viewport (just like header), it will look better.
No description provided.