-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (116 loc) · 4.06 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/3.5.0/remixicon.min.css">
<link rel="stylesheet" href="style.css">
<title>YagYz Portfolio</title>
</head>
<body>
<nav>
<div class="nav-logo">
<a href="#">
<img src="images/ylogogecici.jpg">
</a>
</div>
<ul class="nav-links">
<li class="link"><a href="#">Home</a></li>
<li id="link1" class="link"><a href="#">Features</a></li>
<li id="link3" class="link"><a href="#">About</a></li>
</ul>
<button class="btn">Hire Me</button>
</nav>
<header class="container">
<div class="content">
<span class="blur"></span>
<span class="blur"></span>
<h4>CREATE YOUR SITE LIKE A PRO</h4>
<H1>Hi, I'm <span>YagYz</span>, Web Developer</H1>
<p>
COOMİNG SOON!
</p>
<button class="btn">Get Started</button>
</div>
<div class="image">
<img src="images/header.png">
</div>
</header>
<section class="container">
<h2 class="header">OUR FEATURES</h2>
<div class="features">
<div class="card">
<span><i class="ri-money-dollar-box-line"></i></span>
<h4>Free Tutorials</h4>
<p>
You can learn by contacting the tutorials via discord.
</p>
<a href="#">Join Now <i class="ri-arrow-right-line"></i></a>
</div>
<div class="card">
<span><i class="ri-bug-line"></i></span>
<h4>Fix Your Bugs</h4>
<p>
You have any problem in your codes? Tell me, i will help you fix it.
</p>
<a href="#">Join Now <i class="ri-arrow-right-line"></i></a>
</div>
<div class="card">
<span><i class="ri-history-line"></i></span>
<h4>On Time Videos</h4>
<p>
I haven't been making a video for a while, you might not be able to find it.
</p>
<a href="#">Join Now <i class="ri-arrow-right-line"></i></a>
</div>
<div class="card">
<span><i class="ri-shake-hands-line"></i></span>
<h4>Cooperation</h4>
<p>
You want we worrk together? Write email to us, we will read it.
</p>
<a href="#">Join Now <i class="ri-arrow-right-line"></i></a>
</div>
</div>
</section>
<footer class="container">
<span class="blur"></span>
<span class="blur"></span>
<div class="column">
<div class="logo">
<img src="images/ylogogecici.jpg">
</div>
<p>
Personel Web And Game Developer.
</p>
<div class="socials">
<a href="#"><i class="ri-youtube-line"></i></a>
<a href="#"><i class="ri-instagram-line"></i></a>
<a href="#"><i class="ri-twitter-line"></i></a>
</div>
</div>
<div class="column">
<h4>Company</h4>
<a href="#">Business</a>
<a href="#">Partnership</a>
<a href="#">Network</a>
</div>
<div class="column">
<h4>About Us</h4>
<a href="#">Blogs</a>
<a href="#">Channels</a>
<a href="#">Sponsors</a>
</div>
<div class="column">
<h4>Contact</h4>
<a href="#">Contact Us</a>
<a href="#">Privicy Policy</a>
<a href="#">Terms & Conditions</a>
</div>
</footer>
<div class="copyright">
Copyright © 2023 YagYz Devolopment. All Rights Reserved.
</div>
<script src="script.js"></script>
</body>
</html>