-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnili.html
More file actions
162 lines (122 loc) · 4.74 KB
/
nili.html
File metadata and controls
162 lines (122 loc) · 4.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="nili.css">
<title>Nili's Commissions</title>
</head>
<body>
<!--THIS SITE WAS MADE BY SPOOKY, CHECK OUT MY TWITTER I MAKE COOL THINGS! @SPXXKY_--->
<div class="warning">
<h1>Sorry, your device is not supported :c</h1>
</div>
<div class="everything">
<div class="header">
<h1>Welcome!</h1>
</div>
<!----
<div class="dark">
<input type="button" id="off" class="dark2" value="Toggle dark mode" onclick="darkmode()"/>
<img src="pookie.png" class="minipookie" id="minipookie">
<p class="pookietext" id="pookietext">Nice!</p>
</div>
-->
<hr class="vonal" style="text-align: center; width: 500px; margin-top: -100px; color: white;">
<div class="buttons">
<a href="#intro" class="button1">Introduction</a>
<a href="#exa" class="button1">Examples & Prices</a>
<a href="#soc" class="button1">Info</a>
<a href="#pay" class="button1">Payment</a>
</div>
<div id="intro"></div>
<div class="texts">
<p class="hi">Hi! My name is Nili, I'm a digital artist and I've been drawing since 2018.<br>Since i really like to draw, i've decided to open a commission page!</p>
</div>
<div class="texts">
<h2>Commissions:</h2>
<p>I will draw you OC or fursona as long as its SFW! <br>I can do sketches or fully detailed drawings!<br>My preferred style is anime style!</p>
<p>Examples & Payment below!</p>
</div>
<div class="texts" id="exa">
<h2>Categories & Prices:</h2>
<h2 class="chibiagain">Chibi:</h2>
</div>
<div class="prices">
<div class="texts3">
<p>Chibi sketch - 5$</p>
<p>Line art - 7$</p>
<p>Basic shading - 10$</p>
</div>
</div>
<div class="texts2">
<h2 class="chibi">Chibi:</h2>
</div>
<div class="images">
<img src="art2.jpg" class="art2">
</div>
<div class="texts4">
<h2>Anime OC:</h2>
<p>Fully detailed anime OC art with shading - 40$</p>
<p>OC Sketch - 15$</p>
</div>
<div class="images">
<div class="artsuh">
<img src="art3.png" class="art3">
<img src="art1.jpg" class="art1">
</div>
</div>
<div class="texts4">
<div class="kell"
<div class="furry">
<h2>Fursonas:</h2>
<p>Full Fursona - 40$</p>
<p>Fursona Sketch - 15$</p>
</div>
</div>
<div class="images2">
<img src="art5.png" class="art5">
<img src="art6.jpg" class="art6">
</div>
<div class="texts" id="soc">
<div class="rest">
<h2>Drawing period:</h2>
<p>Sketches will take 1-3 days to complete,<br>Detailed arts will take up to a week to complete! So be patient!</p>
<p>If anything unusual happens and the art gets delayed, you will be notified on the preferred platform!</p>
<h2>Additional information:</h2>
<p>I mostly do digital art, but i accept traditional commissions too!</p>
<p>Backgrounds and additional things are optional, theres no added fee!</p>
<p>No Refunds!</p>
</div>
</div>
<div class="texts" id="pay">
<h2>Payment:</h2>
<p>Every payment is through PayPal only!<br>I am not giving first! You must send the money first and then you will receive your art!</p>
<h2>Interested? Click the button below to get started!</h2>
</div>
<div class="startbutton">
<input type="button" class="start" value="Get Started!" onclick="location.href='checkout.html'"/>
</div>
<div class="texts">
<footer>
<a class="pookie" href="https://twitter.com/spxxkyy_" target="blank">Site made by Spooky!<br>(@spxxkyy_)</a>
</footer>
</div>
</div>
<script>
function darkmode()
{
document.body.style.backgroundColor= "black";
var audio = document.getElementById("minipookie").style.display = 'block';
var audio = document.getElementById("pookietext").style.display = 'block';
setTimeout(function() {
var audio = document.getElementById("minipookie").style.display = 'none';
var audio = document.getElementById("pookietext").style.display = 'none';
var audio = document.getElementById("off").disabled = true;
var audio = document.getElementById('off').style.visibility = 'hidden';
}, 2000);
}
</script>
</div>
</body>
</html>