-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathex2.html
More file actions
33 lines (27 loc) · 892 Bytes
/
ex2.html
File metadata and controls
33 lines (27 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Пример 2 - Наложение текстуры на текст</title>
<link rel="shortcut icon" href="logo.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<style>
div {
background: url(texture.jpg);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-size: 100px;
font-weight: bold;
font-family: sans-serif;
}
</style>
</head>
<body>
<div>Folombas Web</div>
<a href="index.html">Главная</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/background-clip" target="_blank">Подробнее</a>
<a href="https://caniuse.com/?search=background-clip" target="_blank">Поддержка</a>
</body>
</html>