diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..9eaad0f Binary files /dev/null and b/favicon.png differ diff --git a/index.html b/index.html index 65d1f57..b8296fe 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,45 @@ - - - + + + + + + Alperen İsa Nalbant - - \ No newline at end of file + + + + + + + + + +
+ Alperen İsa Nalbant + +
+
+

Merhaba, ben Alperen İsa

+

+ Bilgisayar ile uğraşmayı seven bir kişiyim. Temel düzeyde HTML, CSS, + Python, GNU/Linux ve PyGObject bilgim var. +

+

+ Yaklaşık 2 yıldır bilgisayar ile uğraşıyorum. Bazı şeylerin deneyerek + öğrenilmesi gerektiğine inanıyorum. Bu web sitesini de deneye deneye + yaptım. Çeşitli + projelerim var. Şu anda + Appiload üzerinde çalışıyorum. +

+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..a0256d8 --- /dev/null +++ b/style.css @@ -0,0 +1,62 @@ +:root { + --color1: #0A043C; + --color2: #03506F; + --color3: #BBBBBB; + --color4: #FFE3D8; +} + +* { + font-family: Poppins, system-ui; + margin: 0; + padding: 0; +} + +body { + background: var(--color1); + color: var(--color4); +} + +h1, h2, h3, h4, h5, h6 { + font-family: 'Zilla Slab', system-ui; + color: var(--color3); +} + +h1 { + font-size: 6vw; +} + +p.buyuk { + font-size: 3vw; +} + +p { + margin: 20px 0px; +} + +header { + display: flex; + justify-content: space-between; + padding: 20px; + border-bottom: 1px solid var(--color2); +} + +header ul { + list-style-type: none; +} + +header ul li { + float: left; + padding: 0px 10px; +} + +header ul a { + color: var(--color4); +} + +article { + padding: 50px; +} + +a { + color: var(--color3); +} \ No newline at end of file