Temel Kavramlar
Web Tasarımcının bilmesi gereken temel kavramlar ile ilgili bilgiler yer alır.
Meslek Liseleri Bilişim Bölümü öğrencilerinin gördüğü "Web Tabanlı Uygulama Geliştirme" Dersi içeriği ile ilgili bilgiler yer alır.
Highlight.js, web uygulamalarında kaynak kodunun biçimlendirilip renklendirilmesi için popüler ve ücretsiz bir JavaScript kütüphanesidir.
Css ile :hover ve :not prosedure kullanarak yapılan uygulama kodları paylaşılmaktadır.
Code Pretier, Kod etiketlerinin düzgün görüntülenmesi için kullanılır.
body script etiketleri arasına
h1 {
font-size: 2rem;
}
h2 {
margin-top: 1rem;
font-size: 1.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
margin-top: 1rem;
font-size: 1.5rem;
}
var edad = 17;
if (edad >= 18) {
print('Es mayor de edad');
} else {
print('Es menor de edad');
}
In this article, I’ll share with you a few ways to break a string into characters in Go:
Given a string and a delimiter, strings.Split() slices the string into a slice of substrings.
When the delimiter is empty, the function returns a slice of the individual Unicode characters that make up the string instead.
[Example]
str := "Hello World"
res := strings.Split(str, "")
fmt.Printf("Data type: %T\n", res[0])
fmt.Printf("Characters: %q\n", res)
Note: Package strings need to be imported.
[Output]
Data type: string
Characters: ["H" "e" "l" "l" "o" " " "W" "o" "r" "l" "d"]
This approach is helpful when you want the result to be a slice of strings.
Html, Css ve JavaScript kullanılarak herhangi bir web sitesine veya uygulamaya dark mode(Koyu renk, karanlık tema veya gece modu) uygulama nasıl yapılır.