You are on page 1of 3

C.

1)
<html>
<head>
<meta name=keywords content=C, C++, Java />
</head>
</html>
C.2)
<html>
<body>
<code>
void main() { cout<<HyperText Markup Language(HTML)-Balantl Metin Dili; }
</code>
</body>
</html>
C.3)
<html>
<body>
<p>
y = x<sup>2</sup> + 2x + 1
</p>
</body>
</html>
C.4)
<html>
<body>
<a href=ornek.html> Pyton Programlama Dili </a>
</body>
</html>



C.5)
Temel olarak, web uygulamalar sunucu tarafnda alan kodlarn veribananndan ald bilgileri ileyerek TCP pro tokol
vastasyla a zerinden istemci (kullanc) tarafna ulatrr. stemci tarafnda ise, sayfalarn almasn ve grntlenmesini
web tarayc stlenmektedir.
C.6)
<?

echo rnek php;

?>
<? php

echo rnek php;

?>
<script language=php>

echo rnek php;

</script>


C.7)
function eit_mi($a, $b)
{
return a === b;
}
Burda dikkat edilmesi gerekilen nokta karlatrmada 3 eittir kullanlmasdr.
2 == 2 true dndrr
2 === 2 false dndrr
C.8)
<html>
<head>
<link href="stil.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class=menu>
<a href=ornek.html> git </a>
</div>
</body>
</html>
div.menu a:visited {
display: none;
}

div.menu a:link {
color: red;
background-color: blue;
font-weight: bold;
text-decoration: none;
}
visited zellii: daha nce tklanmsa ne yaplsn.
link zellii: hi tklanmamsa ne yaplsn.
C.9)
color: #FF0000;
background-color: #0000FF;

color: RGB(255,0,0);
background-color: RGB(0,0,255);


hover zellii ile zerine gelindiinde neler yaplaca belirlenir.
div.menu a:hover {
color: blue;
background-color: red;
}
C.10)
Burada mennn grnm inline eklindedir. nk a tag bir satrii elemandr. Bunu u ekilde blok eleman yapabiliriz.
div.menu a {
display: block;

}

stenilen izgi ise u ekilde eklenebilir.
div.menu a {
border: 2px solid yellow;

}

You might also like