View index.html
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Yapılacaklar Listesi</title> | |
<script src="https://cdn.jsdelivr.net/npm/vue"></script> | |
</head> | |
<body> |
View index.html
<style> | |
.button { | |
color:rgb(4, 26, 9) !important; | |
border-color: rgb(122, 153, 119) !important; | |
} | |
.button:hover{ | |
color: rgb(87, 129, 83) !important; | |
} | |
.button:active{ | |
color: #000 !important; |
View index.html
<script src="https://unpkg.com/vue/dist/vue.js"></script> | |
<div id="app-1"> | |
<p>{{ message }}</p> | |
<input v-model="message"> | |
</div> | |
<script> | |
var app6 = new Vue({ | |
el: '#app-1', | |
data: { |
View style.css
.main li, .main li a { | |
color: var(--primary-color); | |
} |
View style.css
:root { | |
--primary-color: red; | |
} |
View dry.css
.main li, .main li a { | |
color: red; | |
} |
View orj.css
.menu li { | |
color: red; | |
} | |
.menu li a { | |
color: red; | |
} |
View consolas.py
import random | |
buyuk_harf = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
kucuk_harf = "abcdefghıjklmnopqrstuvwxyz" | |
sayılar = "01234567890" | |
i = sayac = 0 | |
while i != 1 and sayac <= 10000000000000: | |
i = int(random.choice(sayılar)) | |
count += 1 |
View firafltt.py
import random | |
buyuk_harf = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
kucuk_harf = "abcdefghıjklmnopqrstuvwxyz" | |
sayılar = "01234567890" | |
i = sayac = 0 | |
while i != 1 and sayac <= 10000000000000: | |
i = int(random.choice(sayılar)) | |
count += 1 |
View imono.py
import random | |
buyuk_harf = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
kucuk_harf = "abcdefghıjklmnopqrstuvwxyz" | |
sayılar = "01234567890" | |
i = sayac = 0 | |
while i != 1 and sayac <= 10000000000000: | |
i = int(random.choice(sayılar)) | |
count += 1 |
NewerOlder