-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (27 loc) · 861 Bytes
/
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
<!-- HTML Hyper Text Markup Language
HTML XML tabanlı bir dil hiyerarşik bir dil
lang :language attribute
head tag gözle göremediğimiz site hakkındaki meta bilgiler barındırır
SEO Search Engine Optimization
-->
<!DOCTYPE html>
<html lang="tr">
<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>HepsiBurada</title>
<meta name="Description" content="HepsiBurada bir eticaret Sitesidir.Cep Telefonu Bilgisayar">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="birinciDiv">
<label class="denemeLabel">Deneme Label</label>
</div>
<div class="ikinciDiv">
<label>Başka Label</label>
</div>
</div>
</body>
</html>