html
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
<!DOCTYPE html>
<html>
<head>
<title>How to make great sololearn questions</title>
</head>
<body>
<div id="caja">
<div id="titlecaja">
<p id="title">How to make great sololearn questions</p>
</div>
<div id="justice_code"><p>Before asking anything,</p><a href="https://code.sololearn.com/W0uW3Wks8UBk/?ref=app">Check out Justice's code</a></div>
<hr>
<p class="index">1. Be specific</p>
<p>Don't make generic questions like 'Please help me' or 'I have a problem' without a concrete <b>description</b> about the problem. Description is made for <b>specifying</b> your problem so people will understand it.</p>
<hr/>
<p class="index">2. Title and Description</p>
<p>In title <b>you must write a summary of your question</b>. Some exaples are: 'Python error: 'k' is undefined' or 'How to make vertical align on a div?'. Description is useful to make others understand your problem. There you must make a <b>specific description</b> about your problem. Explain others what is your question.</p>
<hr/>
<p class="index">3. Use tags properly</p>
<p>Tags are made for specifying the <b>type</b> of problem you have and the <b>language</b> related with your question. Don't add tags like 'Steven' or 'hello' because are redundant and unnecessary. Examples of good tags are: 'python', 'oop', 'javascript' or 'responsive'.<br><a href="https://code.sololearn.com/W3uiji9X28C1/?ref=app">Check this out.</a></p>
<hr/>
<p class="index">4. Linking codes</p>
<p>Linking codes is essential to make people understand your problem. <b>Don't upload the code as text in the question's description</b>, because it is hard to understand. Instead of that, <b>create a private code and share its link to the question</b>.<br><a href="https://code.sololearn.com/Wek0V1MyIR2r/?ref=app">Check this out.</a></p>
<hr/>
<p class="index">5. Do not spam</p>
<p><b>Questions made for saying hi or to put random characters are completely inappropiate and redundant</b>. By spamming like that you are hiding other's questions. That is not allowed, so do not make that.</p>
<hr/>
<p class="index">6. Don't repeat questions</p>
Enter to Rename, Shift+Enter to Preview
css
css
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
html {
background-color: lightgray;
}
body {
margin: 0px;
padding: 0px;
font-family: verdana;
}
#caja {
position: absolute;
width: 100%;
background-color: lightgray;
text-align: center;
justify-content: center;
padding: 0px;
}
#title {
font-size: 10vmin;
font-family: verdana;
font-weight: bolder;
text-shadow: 0 0 5px gray;
}
.index {
font-size: 5vmin;
font-family: verdana;
font-weight: bolder;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run