-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 2.44 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>drib</title>
<link rel="stylesheet" href="style.css" />
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/4fb35b1106.js"
crossorigin="anonymous"
></script>
<!-- Font Awesome -->
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;1,100;1,300;1,400&display=swap"
rel="stylesheet"
/>
<!-- Google Fonts -->
</head>
<body>
<div class="app">
<nav>
<div class="logo">
<i
class="fa-solid fa-solid fa-layer-group"
style="font-size: 40px"
></i>
<!-- fa-shield -->
</div>
<div class="l">
<a class="nav__links">Service</a>
<a class="nav__links">Our Awards</a>
<a class="nav__links">Our Clients</a>
</div>
<div class="l__uk">
<i class="fa-solid fa-bars"></i>
</div>
</nav>
<section id="flaw">
<div>
<h3>A Free Collection Of Photos.</h3>
<div class="btns__sect">
<button class="contact">Contact</button>
<button class="video__play">
<i class="fa-solid fa-circle-play"></i>
</button>
</div>
</div>
</section>
<form id="forms">
<input
type="search"
id="search"
class="search"
placeholder="Enter your search"
autocomplete="off"
/>
<a style="cursor: pointer" id="clear"
><i class="fa-solid fa-search"></i
></a>
</form>
<section class="works">
<div class="works__img">
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
</div>
</section>
<div class="r">
<div class="render"></div>
</div>
<footer>
<a href="" class="social__icons"
><i class="fa-brands fa-twitter"></i
></a>
<a href="" class="social__icons"
><i class="fa-brands fa-facebook"></i
></a>
</footer>
</div>
<!-- JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="sys.js"></script>
</body>
</html>