Всем Привет! Сегодня Вы узнаете, как создать адаптивный раздел для сайта «Наши услуги» используя HTML и CSS. Вы сможете посмотреть видео демонстрацию (Демо), скопировать код или скачать архив с готовым кодом.
Также если это видео оказалось для вас полезным, оставьте комментарий со своими мыслями или вопросами. Ваши отзывы помогают нам создавать более ценный контент.
HTML КОД:
<!--font awesome(for icons)-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<section>
<h1>Our Services</h1>
<div class="wrapper">
<div class="card">
<i class="fas fa-laptop"></i>
<h2>Web Development</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Repudiandae
maiores eligendi praesentium neque enim ea ullam sit corrupti a
asperiores.
</p>
</div>
<div class="card">
<i class="fas fa-mobile-alt"></i>
<h2>App Development</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Repudiandae
maiores eligendi praesentium neque enim ea ullam sit corrupti a
asperiores.
</p>
</div>
<div class="card">
<i class="fas fa-chart-bar"></i>
<h2>Digital Marketing</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Repudiandae
maiores eligendi praesentium neque enim ea ullam sit corrupti a
asperiores.
</p>
</div>
</div>
</section>
CSS КОД:
/* Google Fonts(Poppins) */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
font-family: "Poppins", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
section {
margin-top: 100px;
}
section h1 {
text-transform: uppercase;
font-size: 45px;
text-align: center;
margin-bottom: 40px;
color: #4070f4;
}
.wrapper {
width: 80%;
margin: 0 auto;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.wrapper .card {
width: 290px;
text-align: center;
margin: 20px;
background: #fff;
padding: 30px 20px;
cursor: pointer;
border: 1px solid #ddd;
transition: 0.5s;
}
.wrapper .card:hover {
background: #f0f0f0;
}
.wrapper .card i {
font-size: 48px;
color: #4070f4;
}
.wrapper .card h2 {
margin-top: 20px;
margin-bottom: 10px;
font-size: 28px;
}
.wrapper .card p {
font-size: 16px;
color: #666;
line-height: 1.4;
}
0 Комментарии