HTML kodlarını yazmak ve düzenlemek için bir HTML editörüne ihtiyacınız olacak. Kitapta bahsedilen bazı popüler editörler şunlardır:
İnternet bağlantınız varsa, kurulum gerektirmeyen online HTML editörlerini de kullanabilirsiniz. Bazı popüler online editörler şunlardır:
HTML, CSS ve JavaScript gibi web programlama dilleri hakkında bilgi edinmek içinW3Schools’u kullanabilirsiniz. W3Schools, interaktif alıştırmalar ve örnekler içeren ücretsiz bir web sitesidir.
Bir okuyucumuz olan Jennefer'ın tavsiyesi üzerine, HTML'e yeni başlayanlar için inanılmaz derecede faydalı ve kapsamlı bir rehber olan bu kaynağı da listenize ekliyoruz. Pratik adımlarla HTML öğrenmek için harika bir başlangıç noktası: HTML Kılavuzu: Yeni Başlayanlar İçin
**A note for Jennefer:** Thank you for the great suggestion! We found the guide incredibly useful and added it here for our readers.
<!DOCTYPE html> | (HTML belgesinin başlangıcı) |
<html> | (HTML belgesinin HTML kısmının başlangıcı) |
<head> | (Belgenin başlık ve meta verileri içeren kısmı) |
<title> | (Belgenin başlığı) |
<meta charset="UTF-8"> | (Karakter kodlaması) |
</head> | (Belgenin başlık ve meta verileri içeren kısmının sonu) |
<body> | (Belgenin gövde kısmı) |
<h1> | (Başlıklar, büyükten küçüğe) |
<p> | (Paragraf) |
<img src="resim_adi.jpg" alt="Resim"> | (Resim ekleme) |
<a href="link.html"> | (Link ekleme) |
</body> | (Belgenin gövde kısmının sonu) |
</html> | (HTML belgesinin sonu) |
<strong> | (Metni kalınlaştırır) |
<em> | (Metni italik yapar) |
<br> | (Satır sonu ekler) |
<hr> | (Yatay çizgi ekler) |
<ul> | (Sırasız liste) |
<li> | (Liste öğesi) |
</ul> | (Sırasız liste sonu) |
<ol> | (Sıralı liste) |
<li> | (Liste öğesi) |
</ol> | (Sıralı liste sonu) |
<table> | (Tablo başlangıcı) |
<tr> | (Tablo satırı) |
<th> | (Başlık hücresi) |
<td> | (Veri hücresi) |
</tr> | (Tablo satırı sonu) |
</table> | (Tablo sonu) |
<form> | (Form başlangıcı) |
<input type="text"> | (Metin girişi) |
<input type="submit"> | (Gönder düğmesi) |
</form> | (Form sonu) |
Projemiz 1- Web tasarım ve kodlama projesi.
Projenin temel konusu, ücretsiz hosting ve alan adı sağlayan servislerden birini kullanarak, basit bir web sayfası geliştirmektir. Sayfamız, bu proje kapsamında geliştirilen örnek bir uygulamadır.
Projemiz 2- WordPress üzerine kurulu bir blog sayfası.
Akademik profil:Erdem Erdoğdu
Üretim süreçlerinin verimliliğini artırmak için PHP, MySQL ve JavaScript kullanarak geliştirmeye çalıştığım Üretim Takip Sistemi. İlgi ve Desteği içinMehmet Fırathocama sonsuz teşekkürler.
Projemiz 3- YouTube'da bir eğitim videosu.
Akademik profil:Mehmet Fırat
Projemiz kapsamında kullanılan HTML kodlarının detaylı görünümü. Kodları incelemek ve web sayfamızın nasıl oluşturulduğunu öğrenmek için aşağıdaki bağlantıya tıklayın.
Kodları Görüntüle3. Parti Destek Hizmeti Diaqus Kullanılarak oluşturulmuş yorum alanı
Bu web sayfası, insan ve teknolojiyi bir araya getirme vizyonuyla tasarlanmıştır. Sorularınız veya önerileriniz varsa,bana ulaşmak için bu linketıklayabilirsiniz. Chatgpt içinopen ai web sitesini ziyaret edin.
FORMU doldurarak kayan yazı alanına
Mesajınızı ekleyebilirsiniz
Bu web sayfasının oluşturulmasında aşağıdaki teknikler ve teknolojiler kullanılmıştır:
Bu teknolojiler ve efektler, kullanıcıya modern ve etkileşimli bir web deneyimi sunmak için bir araya getirilmiştir.
You will need an HTML editor to write and edit HTML codes. Some popular editors mentioned in the book are:
If you have an internet connection, you can also use online HTML editors that do not require installation. Some popular online editors are:
You can use W3Schools to learn about web programming languages like HTML, CSS, and JavaScript. W3Schools is a free website with interactive exercises and examples.
Based on a recommendation from one of our readers, Jennefer, we are adding this incredibly useful and comprehensive guide for HTML beginners to our list. It is a great starting point for learning HTML with practical steps: HTML Guide for Beginners
**A note for Jennefer:** Thank you for the great suggestion! We found the guide incredibly useful and added it here for our readers.
<!DOCTYPE html> | (Start of the HTML document) |
<html> | (Start of the HTML part of the HTML document) |
<head> | (The part containing the document's title and metadata) |
<title> | (The document's title) |
<meta charset="UTF-8"> | (Character encoding) |
</head> | (End of the part containing the document's title and metadata) |
<body> | (The document's body part) |
<h1> | (Headings, from largest to smallest) |
<p> | (Paragraph) |
<img src="resim_adi.jpg" alt="Resim"> | (Adding an image) |
<a href="link.html"> | (Adding a link) |
</body> | (End of the document's body part) |
</html> | (End of the HTML document) |
<strong> | (Makes the text bold) |
<em> | (Makes the text italic) |
<br> | (Adds a line break) |
<hr> | (Adds a horizontal line) |
<ul> | (Unordered list) |
<li> | (List item) |
</ul> | (End of unordered list) |
<ol> | (Ordered list) |
<li> | (List item) |
</ol> | (End of ordered list) |
<table> | (Start of table) |
<tr> | (Table row) |
<th> | (Header cell) |
<td> | (Data cell) |
</tr> | (End of table row) |
</table> | (End of table) |
<form> | (Start of form) |
<input type="text"> | (Text input) |
<input type="submit"> | (Submit button) |
</form> | (End of form) |
Project 1- Web design and coding project.
The main subject of the project is to develop a simple web page using one of the services that provide free hosting and domain names. Our page is an example application developed within the scope of this project.
Project 2- A blog page built on WordPress.
Academic profile:Erdem Erdoğdu
The Production Tracking System I am trying to develop using PHP, MySQL, and JavaScript to increase the efficiency of production processes. Endless thanks to my instructorMehmet Fıratfor his interest and support.
Project 3- An educational video on YouTube.
Academic profile:Mehmet Fırat
Detailed view of the HTML codes used in our project. Click the link below to examine the codes and learn how our web page was created.
View CodesComment area created using the 3rd Party Support Service Disqus
This web page is designed with the vision of bringing people and technology together. If you have any questions or suggestions, you can click this link to reach me. Visit the open AI website for Chatgpt.
You can add your Message to the scrolling text area by
filling out the FORM
The following techniques and technologies were used in the creation of this web page:
These technologies and effects have been brought together to offer the user a modern and interactive web experience.