-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
add catalog moyo #4847
base: master
Are you sure you want to change the base?
add catalog moyo #4847
Changes from all commits
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 |
---|---|---|
|
@@ -21,7 +21,345 @@ | |
/> | ||
</head> | ||
|
||
<body> | ||
<h1>Catalog</h1> | ||
<body class="body"> | ||
<header class="header"> | ||
<img | ||
src="images/logo.png" | ||
alt="Логотип" | ||
class="logo_img" | ||
/> | ||
<nav class="nav"> | ||
<ul class="nav__list"> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link is-active" | ||
href="./src" | ||
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. All navigation links have the same |
||
> | ||
APPLE | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
SAMSUNG | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
SMARTPHONES | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
data-qa="nav-hover" | ||
> | ||
LAPTOPS & COMPUTERS | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
GADGETS | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
TABLETS | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
PHOTO | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
class="nav__link" | ||
href="./src" | ||
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. All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page. 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. All navigation links have the same |
||
> | ||
VIDEO | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main class="main"> | ||
<div class="main__container"> | ||
<div | ||
class="card" | ||
data-qa="card" | ||
> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
<div class="card"> | ||
<img | ||
src="../src/images/imac.jpeg" | ||
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. The image source for all product cards is the same ('../src/images/imac.jpeg'). If this is not intentional, ensure each card has the correct image source. 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. All product cards currently use the same image source ( |
||
alt="computer" | ||
class="card__foto" | ||
/> | ||
<p class="card__title"> | ||
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A) | ||
</p> | ||
<p class="card__product-code">Product code: 195434</p> | ||
<div class="card__stars"> | ||
<div class="stars stars--4"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<p class="card__reviews">Reviews: 5</p> | ||
</div> | ||
<div class="card__price"> | ||
<p class="card__name-price">Price:</p> | ||
<p class="card__num-price">$2,199</p> | ||
</div> | ||
<button | ||
class="card__button" | ||
data-qa="card-hover" | ||
type="button" | ||
> | ||
Buy | ||
</button> | ||
</div> | ||
</div> | ||
</main> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.body { | ||
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. The selector '.body' is targeting a class named 'body'. If you intend to style the HTML body element, use 'body' instead of '.body'. 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. The |
||
margin: 0; | ||
font-family: Roboto, sans-serif; | ||
font-weight: 400; | ||
font-size: 10px; | ||
line-height: 14px; | ||
color: #060b35; | ||
box-sizing: border-box; | ||
} |
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.
All navigation links have the same href attribute './src'. Ensure that each link points to the correct destination page.