-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
190 lines (155 loc) · 4.8 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
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Olcay Eryiğit | Frontend</title>
<meta name="keyword" content="Frontend" />
<meta name="description" content="Frontend" />
<!-- Fonts Google -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!-- CSS -->
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/main.css" />
<!-- Tablet -->
<link rel="stylesheet" media="(max-width:768px)" href="css/tablet.css" />
<!-- Mobile -->
<link rel="stylesheet" media="(max-width:500px)" href="css/mobile.css" />
</head>
<body>
<header class="bg-dark-blue">
<div class="container">
<nav id="navbar">
<h1 class="heading-small">Olcay Eryiğit</h1>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#training">Training</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Home -->
<section id="home">
<img src="./images/me.jpg" alt="Olcay Eryiğit">
<div class="name text-center">
<h2 class="heading-big">Olcay Eryiğit</h2>
<p>Engineer | Founder of xSoftware
</p>
</div>
<div class="btn-container">
<a class="btn btn-primary" href="#courses">Go to Courses</a>
</div>
</section>
<!-- Eğitimler -->
<section id="training" class="bg-dark-blue">
<h3 class="text-center heading-medium">Training</h3>
<div class="items">
<article class="item">
<i class="fa fa-pencil-alt"></i>
<h5>In-class Training</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente, cupiditate!</p>
</article>
<article class="item">
<i class="fa fa-pencil-alt"></i>
<h5>Online Contents</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente, cupiditate!</p>
</article>
<article class="item">
<i class="fa fa-pencil-alt"></i>
<h5>Conferences
</h5>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente, cupiditate!</p>
</article>
</div>
</section>
<!-- Courses -->
<section id="courses">
<h3 class="text-center heading-medium">Courses</h3>
<div class="container">
<div class="courses">
<!-- course1 -->
<div class="course">
<div class="course-image">
<img src="images/i1.jpg" alt="Python">
<span>%90 discount</span></div>
<div class="course-info">
<div class="title">Title</div>
<div class="description">Description</div>
<div class="instructor">Instructor</div>
<div class="rating">Rating</div>
</div>
</div>
<!-- course2 -->
<div class="course">
<div class="course-image">
<img src="images/i1.jpg" alt="Python">
<span>%90 discount</span></div>
<div class="course-info">
<div class="title">Title</div>
<div class="description">Description</div>
<div class="instructor">Intstructor</div>
<div class="rating">Rating</div>
</div>
</div>
<!-- course3 -->
<div class="course">
<div class="course-image">
<img src="images/i1.jpg" alt="Python">
<span>%90 discount</span></div>
<div class="course-info">
<div class="title">Title</div>
<div class="description">Description</div>
<div class="instructor">Intstructor</div>
<div class="rating">Rating</div>
</div>
</div>
<!-- -->
</div>
</div>
</section>
<!--footer -->
<footer id="contact" class="bg-dark-blue">
<div class="contact-form">
<form>
<h4>Contact Me</h4>
<!-- -->
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Your Name">
</div>
<!-- -->
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="E-mail">
</div>
<!-- -->
<div class="form-group">
<label for="message">Message</label>
<textarea name="message" id="message" class="form-control" rows="10" placeholder="Your message.."></textarea>
</div>
<!-- -->
<button type="submit" class="btn btn-block">Submit</button>
</form>
<!--Sosyal medya -->
<ul>
<li><a href=""> <i class="fab fa-facebook"></i></a></li>
<li><a href=""> <i class="fab fa-twitter"></i></a></li>
<li><a href=""> <i class="fab fa-instagram"></i></a></li>
</ul>
</div>
</footer>
<!-- -->
</body>
</html>