HTML Paragraf Etiketi Kullanımı 2020

- 0
- 0
- 0
- 0
- 0
- 0
HTML Paragraf Etiketi
İçindekiler
Gizle
HTML Paragraf Etiketi
HTML <p> etiketi paragraf yazmak için kullanılır.
ÖRNEK
<!DOCTYPE html> <html> <body> <p>This is my first paragraph.</p> </body> </html>
HTML <pre> Etiketi
HTML <pre> etiketi önceden biçimlendirilmiş metinleri belirtmek için kullanılır.
<!DOCTYPE html> <html> <body> <p>The pre tag preserves both spaces and line breaks:</p> <pre> Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications. Using HTML you can create your own website. </pre> </body> </html>
GO TO COMMENTS (1)