forked from Real-Dev-Squad/website-www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart-feature.html
73 lines (70 loc) · 2.27 KB
/
art-feature.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Art Feature</title>
<link rel="icon" href="/img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/art-feature.css" />
</head>
<body>
<div class="title-container">
<h1 class="heading">CSS Art</h1>
<div class="container">
<button id="instruction-button">Instructions</button>
</div>
</div>
<div class="overlay">
<div class="instruction-modal">
<button class="close">×</button>
<h1 class="instruction-heading">Instructions</h1>
Hey User, Welcome to CSS Art Feature !<br /><br />
These are few intructions which you need to follow strictly for
presenting your creativity else you won't be getting the desired
results:<br />
<ul>
<li>Use only CSS format style code.</li>
<li>
You can only style a single div for now with CSS styles written
</li>
<li>Using semicolon(;) is compulsory.</li>
<li>Here is an example, how you can proceed with the Art :</li>
</ul>
<img
class="instruction-gif"
src="img/art-feature/instructions.gif"
alt="Instructions example"
/><br /><br />
Note : We will bring the functionality of styling multiple divs soon.
</div>
</div>
<form id="submit-art-form">
<div class="editor">
<div class="html-container">
<input
name="artTitle"
type="text"
placeholder="Enter your art title"
/>
<textarea id="html-code" class="html-container-textarea"></textarea>
</div>
<div class="output-container">
<iframe id="output">delete</iframe>
</div>
</div>
<div class="price-container">
<label>Art Price</label>
<input
name="artPrice"
type="number"
min="0"
class="price-input"
placeholder="Dineros"
required
/>
<button type="submit" class="button submit-art">Submit Art</button>
</div>
</form>
<script src="js/artFeature.js"></script>
<script src="js/darkmode.js"></script>
</body>
</html>