-
Notifications
You must be signed in to change notification settings - Fork 11
/
codeproject_template.htm
106 lines (75 loc) · 4.15 KB
/
codeproject_template.htm
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--------------------------------------------------------------------------->
<!-- INTRODUCTION
The Code Project article submission template (HTML version)
Using this template will help us post your article sooner. To use, just
follow the 3 easy steps below:
1. Fill in the article description details
2. Add links to your images and downloads
3. Include the main article text
That's all there is to it! All formatting will be done by our submission
scripts and style sheets.
-->
<!--------------------------------------------------------------------------->
<!-- IGNORE THIS SECTION -->
<html>
<head>
<title>The Code Project</title>
<Style>
BODY, P, TD { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt }
H2,H3,H4,H5 { color: #ff9900; font-weight: bold; }
H2 { font-size: 13pt; }
H3 { font-size: 12pt; }
H4 { font-size: 10pt; color: black; }
PRE { BACKGROUND-COLOR: #FBEDBB; FONT-FAMILY: "Courier New", Courier, mono; WHITE-SPACE: pre; }
CODE { COLOR: #990000; FONT-FAMILY: "Courier New", Courier, mono; }
</style>
<link rel="stylesheet" type="text/css" href="http://www.codeproject.com/App_Themes/Std/CodeProject.css">
</head>
<body bgcolor="#FFFFFF" color=#000000>
<!--------------------------------------------------------------------------->
<!------------------------------- STEP 1 --------------------------->
<!-- Fill in the details (CodeProject will reformat this section for you) -->
<pre>
Title: Enter Article Title Here
Author: Enter your Code Project User Name (or suggest one if you're not a member)
Email: Enter your Code Project E-mail Login (or the email you wish to use if not a member)
Language: Enter the Languages that Apply to Your Article (C# 3.0, etc.)
Platform: Enter the Platforms that Apply to Your Article (Windows, etc.)
Technology: Enter the Technologies that Apply to Your Article (WPF, etc.)
Level: Pick ONE: Beginner/Intermediate/Advanced
Description: Enter a brief description of your article
Section Enter the Code Project Section you Wish the Article to Appear
SubSection Enter the Code Project SubSection you Wish the Article to Appear
License: Enter the license (<a href="http://www.codeproject.com/info/licenses.aspx">CPOL, CPL, MIT, etc</a>)
</pre>
<!------------------------------- STEP 2 --------------------------->
<!-- Include download and sample image information. -->
<ul class=download>
<li><a href="Article_demo.zip">Download demo project - XXX Kb </a></li>
<li><a href="Article_src.zip">Download source - XXX Kb</a></li>
</ul>
<p><img src="Article.gif" alt="Sample Image - maximum width is 600 pixels" width=400 height=200></p>
<!------------------------------- STEP 3 --------------------------->
<!-- Add the article text. Please use simple formatting (<h2>, <p> etc) -->
<h2>Introduction</h2>
<p>What the article/code snippet does, why it's useful, the problem it solves etc. </p>
<h2>Background</h2>
<p>(Optional) Is there any background to this article that may be useful such as an introduction to the basic ideas presented? </p>
<h2>Using the code</h2>
<p>A brief description of how to use the article or code. The class names, the methods and properties, any tricks or tips. </p>
<p>Blocks of code should be set as style "Formatted" like this: </p>
<pre>//
// Any source code blocks look like this
//
var i = 0;
...</pre>
<p>Remember to set the Language of your code snippet using the Language dropdown. </p>
<p>Use the "var" button to wrap Variable or class names in &lt;code&gt; tags like <code>this</code>. </p>
<h2>Points of Interest</h2>
<p>Did you learn anything interesting/fun/annoying while writing the code? Did you do anything particularly clever or wild or zany? </p>
<h2>History</h2>
<p>Keep a running update of any changes or improvements you've made here. </p>
<!------------------------------- That's it! --------------------------->
</body>
</html>