xxxxxxxxxx
git checkout f1962b3cc771184a471e1350fa280d80d5fdd09d^
# Notice the ^ at the end. That means one revision behind.
# For example this would be 5 revisions behind:
git checkout f1962b3cc771184a471e1350fa280d80d5fdd09d^^^^^
# ... equivalent to:
git checkout f1962b3cc771184a471e1350fa280d80d5fdd09d~5
xxxxxxxxxx
<p id="customp">ID ile erişlecek P etiketi</p>
<p>Paragraf Elemanı 1 </p>
<p>Paragraf Elemanı 2</p>
<script>
let customP= document.getElementById("customp")
alert(customP.innerHTML)
</script>
//p etiketini seçtikten sonra p etiketine ait ilgili özelliklere ve fonksiyonlara erişebiliriz.
//id benzersiz olmalıdır aynı id sahip etiket olmamalıdır.