Домашно към задача L3_04_Buttons-css от CSS-Typography
Какво се има предвид
Use _fontawesome_ for this task.
Какво се има предвид
Use _fontawesome_ for this task.
Здравей,
Не знам каква е задачата, но предполагам става въпрос за:
https://fontawesome.com/how-to-use/on-the-web/referencing-icons/basic-use
Install Vpn Master is a simple and simple VPN with which you can connect in a secure and unlimited way to the Internet without leaving a trace thanks to the proxy servers. This utility will allow you to browse any content without any type of restriction, whatever the type. If a company limited or its […]
Трябва да се импортне Font Awesome в css файла:
@import url("https://use.fontawesome.com/releases/v5.10.2/css/all.css");
След това при бутоните да се добави иконка с <i> таг (https://fontawesome.com/icons/arrow-down?style=solid):
<button class="button fill hover"><i class="fas fa-arrow-down"></i>Download</button>
Във връзка с тази задача може ли да попитам, защо този код не работи.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="proba.css">
</head>
<body>
<button class="br" class="fill" class="hover" href="">Learn More</button>
</body>
</html>
css
.br{
background:green;
}
.hover:hover{
border: red;
color: blue;
}
.fill{
font-size: 30px;
}