Skip to content

Commit

Permalink
Merge pull request #2 from gilodo/module2-task1
Browse files Browse the repository at this point in the history
Module2 task1
  • Loading branch information
vikitina authored Dec 21, 2024
2 parents 13d8026 + ce215fe commit 58943c0
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Личный проект «Кэт энерджи»

* Студент: [Михаил Гилодо](https://up.htmlacademy.ru/adaptive-individual/2/user/1488001).
* Наставник: `Виктория Никитина`.
* Наставник: [Виктория Никитина](https://htmlacademy.ru/profile/id1217273).

---

Expand Down
71 changes: 60 additions & 11 deletions source/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,62 @@
<!DOCTYPE html>
<html class="page" lang="ru">
<head>
<meta charset="UTF-8">
<title>Название проекта</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/index.js" defer></script>
</head>
<body class="page__body">
<header class="header">Шапка</header>
</body>
</html>

<head>
<meta charset="UTF-8">
<title>Название проекта</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="styles/styles.css">
<script src="scripts/index.js" defer></script>
</head>

<body class="page__body">
<header class="header">
<a href="#" class="header__logo">
<picture>
<img src="" alt="" class="header__logo-image">
</picture>
</a>
<nav class="header__nav nav">
<button class="nav__toggle">
<span class="visually-hidden">Открыть/закрыть меню</span>
</button>
<ul class="nav__list nav-list">
<li class="nav-list__item">
<a href="#" class="nav-list__link">главная</a>
</li>
<li class="nav-list__item">
<a href="#" class="nav-list__link">каталог продукции</a>
</li>
<li class="nav-list__item">
<a href="#" class="nav-list__link">подбор программы</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<section class="hero">
<h1 class="hero__title">Функциональное питание для котов</h1>
<p class="hero__text">Занялся собой? Займись котом!</p>
<a href="#" class="hero__link">подобрать программу</a>
</section>
<section class="programs">
<h2 class="visually-hidden">Программы для питомцев</h2>
<ul class="programs__list">
<li class="programs__item">
<h3 class="programs__title">похудение</h3>
<p class="programs__text">Ваш кот весит больше собаки и почти утратил способность лазить по деревьям? Пора на
диету! Cat Energy Slim поможет вашему питомцу сбросить лишний вес.</p>
<a href="" class="programs__link">каталог slim</a>
</li>
<li class="programs__item">
<h3 class="programs__title">Набор массы</h3>
<p class="programs__text">Заработать авторитет среди дворовых котов и даже собак? Серия Cat Energy Pro поможет
вашему коту нарастить необходимые мышцы!</p>
<a href="" class="programs__link">каталог pro!!!!!!!!</a>
</li>
</ul>
</section>
</main>
</body>

</html>

0 comments on commit 58943c0

Please sign in to comment.