-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Develop #4964
base: master
Are you sure you want to change the base?
Develop #4964
Changes from 4 commits
8e8723c
da0147a
427b71b
986b178
0b6c87e
2fb7984
ff4f745
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -22,6 +22,377 @@ | |||||||||||||||||
</head> | ||||||||||||||||||
|
||||||||||||||||||
<body> | ||||||||||||||||||
<h1>Catalog</h1> | ||||||||||||||||||
<header class="header"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="logo" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/logo.png" | ||||||||||||||||||
alt="MOYO Logo" | ||||||||||||||||||
/> | ||||||||||||||||||
</a> | ||||||||||||||||||
|
||||||||||||||||||
<nav class="nav"> | ||||||||||||||||||
<ul class="nav__list"> | ||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link is-active" | ||||||||||||||||||
> | ||||||||||||||||||
Apple | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Samsung | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Smartphones | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
data-qa="nav-hover" | ||||||||||||||||||
> | ||||||||||||||||||
Laptops & Computers | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Gadgets | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Tablets | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li class="nav__item"> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Photo | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
|
||||||||||||||||||
<li> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
class="nav__link" | ||||||||||||||||||
> | ||||||||||||||||||
Video | ||||||||||||||||||
</a> | ||||||||||||||||||
</li> | ||||||||||||||||||
</ul> | ||||||||||||||||||
</nav> | ||||||||||||||||||
</header> | ||||||||||||||||||
<main class="catalog"> | ||||||||||||||||||
Comment on lines
+112
to
+113
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="card-hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
|
||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add the blank line between the all cards
Suggested change
|
||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div | ||||||||||||||||||
class="product-card" | ||||||||||||||||||
data-qa="card" | ||||||||||||||||||
> | ||||||||||||||||||
<img | ||||||||||||||||||
src="./images/imac.jpeg" | ||||||||||||||||||
alt="imac" | ||||||||||||||||||
class="product-card__image" | ||||||||||||||||||
/> | ||||||||||||||||||
<h2 class="product-card__title"> | ||||||||||||||||||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||||||||||||||||||
</h2> | ||||||||||||||||||
<p class="product-card__description">Product code: 195434</p> | ||||||||||||||||||
<div class="mark"> | ||||||||||||||||||
<div class="stars stars--4"> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
<span class="stars__star"></span> | ||||||||||||||||||
</div> | ||||||||||||||||||
<p class="mark__reviews">Reviews: 5</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<div class="price"> | ||||||||||||||||||
<p class="price__word">Price:</p> | ||||||||||||||||||
<p class="price__numeric">$2,199</p> | ||||||||||||||||||
</div> | ||||||||||||||||||
<a | ||||||||||||||||||
href="#" | ||||||||||||||||||
data-qa="hover" | ||||||||||||||||||
class="bottom" | ||||||||||||||||||
> | ||||||||||||||||||
BUY | ||||||||||||||||||
</a> | ||||||||||||||||||
</div> | ||||||||||||||||||
</main> | ||||||||||||||||||
<!--#endregion product-cards--> | ||||||||||||||||||
</body> | ||||||||||||||||||
</html> |
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.
The last list item in the navigation does not have a class attribute like the others. Consider adding a class for consistency and easier styling.