-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (75 loc) · 4.16 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
<!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>Maraskli Developerlar</title>
<link rel="icon" href="https://malibyk.github.io/MaraskliDeveloperlarYTWebsite/img/yt.jpg">
<!-- CSS FILES -->
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/tablet.css">
<link rel="stylesheet" href="./css/mobile.css">
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap" rel="stylesheet">
</head>
<body >
<div class="container" id="container">
<header>
<span class="name">Maraskli Developerlar</span>
<a href="#container" class="mainmenu">Main Menu</a>
<a href="#content" class="lessons">Lessons</a>
<a href="#content-list" class="lessons-list">Videos</a>
<a href="#footer" class="contact">Contacts</a>
</header>
<div class="profile">
<img src="./img/yt.jpg">
<h3>Maraskli Developerlar</h3>
<span>Muhammet Ali / Muhammed Enes / Muzaffer Murat</span>
<a href="https://www.youtube.com/channel/UCnZw8EJIzA7oBMb_7Fa6xew" class="go-yt">Youtube Channel</a>
</div>
<div class="content" id="content">
<div class="box lesson1">
<img src="./img/pencil-icon.jpg" alt="">
<h3> <a href="#">Unity Course</a></h3>
<p>With Unity, you will be able to make advanced 2D games and 3D games on your own without any prior knowledge.</p>
</div>
<div class="box lesson2">
<img src="./img/pencil-icon.jpg" alt="">
<h3> <a href="#">C# Course</a></h3>
<p>By learning C #, one of the popular software languages of today and the future, you will develop any application you want in any field.</p>
</div>
<div class="box lesson3">
<img src="./img/pencil-icon.jpg" alt="">
<h3> <a href="#">Python Course</a></h3>
<p>With Python, which is useful and easy to learn, you will develop unlimited projects in many areas without any software experience.</p>
</div>
</div>
<div class="content-list" id="content-list">
<h2>Videos</h2>
<div class="video">
<iframe width="560px" height="315px" src="https://www.youtube.com/embed/llYxnh0XW7w" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video">
<iframe width="560px" height="315px" src="https://www.youtube.com/embed/Q5pfei0rYJ0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="video">
<iframe width="560px" height="315px" src="https://www.youtube.com/embed/blJgJ29ok9g" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<footer class="footer" id="footer">
<form class="footer-form" action="">
<h2 class="footer-header">Find Us</h2>
<!-- <label for="user-name" class="name-label">name</label> -->
<input type="text" id="user-name" placeholder="name">
<!-- <label for="email" class="email-label">e-mail</label> -->
<input type="email" name="email" id="email" placeholder="e-mail">
<!-- <label for="message" class="message-label">message</label> -->
<textarea name="message" id="message" cols="30" rows="10" placeholder="Your Message..."></textarea>
<input type="button" class="submit-btn" value="Send">
</form>
</footer>
</div>
</body>
</html>