-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
188 lines (179 loc) · 7.01 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!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">
<link rel="stylesheet" href="./css/style.css">
<title>Web Arayüzü</title>
</head>
<body>
<header class="header">
<div class="container">
<a href="" class="logo">
<img src="./css/image/logo.svg" alt="">
</a>
<nav class="menu">
<ul>
<li>
<a href="#">
<i class="fas fa-book"></i> Learn to Code
</a>
</li>
</ul>
</nav>
<div class="search">
<input type="text" placeholder="Search...">
<button class="submit" name="submit">
<i class="fas fa-search" name="text"></i>
</button>
</div>
<nav class="login-buttons">
<ul>
<li class="join-now-btn">
<a href="#">Join Now</a>
</li>
<li>
<a href="#">Sign In</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="banner">
<div class="container">
<div class="banner-box">
<h1>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ad, nulla?</h1>
<h3>Lorem ipsum dolor sit amet consectetur.</h3>
<a href="" class="button btn">CREATE YOUR FREE ACCOUNT</a>
</div>
<div class="banner-box banner-image">
<a href="#">
<img src="./css/image/2.png" alt="">
</a>
</div>
</div>
</section>
<div class="container">
<section class="section1">
<div class="lang">
<a href="#">
<img src="./css/image/icons/javascript.png" alt="JavaScript">
<span class="title">javascript</span>
</a>
<a href="#">
<img src="./css/image/icons/react.png" alt="React">
<span class="title">React</span>
</a>
<a href="#">
<img src="./css/image/icons/graphql.png" alt="GraphQL">
<span class="title">GraphQL</span>
</a>
<a href="#">
<img src="./css/image/icons/gatsby.png" alt="Gatsby">
<span class="title">Gatsby</span>
</a>
<a href="#">
<img src="./css/image/icons/css.png" alt="CSS">
<span class="title">CSS</span>
</a>
<a href="#">
<img src="./css/image/icons/vscode.png" alt="VS Code">
<span class="title">VS Code</span>
</a>
</div>
<div class="inner">
<h3>What is egghead?</h3>
<p>egghead is a group of working web development professionals and open source contributors that provide you with concise, information dense video courses on the best tools in the industry.</p>
<p>We are dedicated to respecting your time. This means that egghead courses get to the point and deliver knowledge that you can use today. You won't find boring 8 hour courses on egghead, instead you'll find a wealth of bite-sized courses
that pack more information in a fraction of the time.</p>
</div>
</section>
<section class="section2">
<div class="icon">
<i class="fas fa-quote-left"></i>
</div>
<p>If you're a developer, you owe it to yourself to follow @eggheadio. Short, instructional videos on the technologies we use.
</p>
<div class="user">
<img src="./css/image/mikroişlemci.jpg" alt=""> Shaun Cave on Twitter
</div>
</section>
<section class="section3">
<div class="text">
<h3>Learn something new today</h3>
<p>Ready to get started? egghead has many free community resource courses for you to start learning today. Create your free account and choose something to learn. Creating a free account will allow you to view all of the free courses egghead
has to offer as well as tracking your progress as you learn.</p>
<a href="#" class="btn color-green">Create Your Free Account</a>
</div>
<div class="image">
<img src="./css/image/1.png" alt="">
</div>
</section>
</div>
<footer class="footer">
<div class="container">
<div class="logo">
<a href="#">
<img src="./css/image/logo.svg" alt="">
</a>
</div>
<div class="footer-nav">
<nav>
<h5>CONTENT</h5>
<ul>
<li>
<a href="#">Browse</a>
</li>
<li>
<a href="#">Courses</a>
</li>
<li>
<a href="#">Lessons</a>
</li>
<li>
<a href="#">Podcats</a>
</li>
</ul>
</nav>
<nav>
<ul>
<h5>ABOUT</h5>
<li>
<a href="#">Pricing</a>
</li>
<li>
<a href="#">Instructors</a>
</li>
<li>
<a href="#">Stories</a>
</li>
<li>
<a href="#">Team</a>
</li>
<li>
<a href="#">
<i class=""></i> Store</a>
</li>
</ul>
</nav>
<div class="search">
<h4>Search for Lessons and Courses</h4>
<form action="">
<input type="text" placeholder="e.g. Javascript,Reach" name="" id="">
<button class="button">
<i class="fas fa-search"></i>
</button>
</form>
</div>
</div>
<div class="copyright">
<a href="#">Terme & Conditions</a>
<span class="text">
© egghead.io
</span>
</div>
</div>
</footer>
</body>
</html>