-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite-for-us.html
More file actions
112 lines (95 loc) · 3.09 KB
/
Copy pathwrite-for-us.html
File metadata and controls
112 lines (95 loc) · 3.09 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
---
layout: page
title: "Write for Us"
permalink: /write-for-us/
---
<section id="write-for-us">
<div class="content-container">
<h1>Write for Us</h1>
<p>If you have expertise in Data Science, Machine Learning, AI, or Analytics, we welcome your contributions. Whether you’re a student, professional, researcher, or enthusiast, LLmachine offers a platform to share knowledge, tools, and ideas with a broader community.</p>
<div class="write-benefits">
<h2>What We’re Looking For</h2>
<ul>
<li>Technical tutorials, walkthroughs, or project breakdowns in machine learning or data analysis</li>
<li>Open-source tools, code snippets, or dataset documentation</li>
<li>Insightful visualizations, data storytelling, or practical case studies</li>
<li>Thought leadership on AI, ethics, industry applications, or career development</li>
</ul>
</div>
<div class="how-to-submit">
<h2>How to Submit</h2>
<p>Use the form below to tell us about your idea or submission. You may also include links to drafts or live projects hosted on GitHub, Colab, or Google Docs.</p>
<form action="https://formsubmit.co/kent.sew@gmail.com" method="POST" target="_blank">
<input type="hidden" name="_captcha" value="false">
<div class="form-group">
<input type="text" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" name="email" placeholder="Your Email Address" required>
</div>
<div class="form-group">
<textarea name="message" rows="7" placeholder="Briefly describe your article, project, or resource. Include any relevant links." required></textarea>
</div>
<button type="submit" class="cta-button">Submit Article</button>
</form>
</div>
<div class="contributor-showcase">
<h2>Featured Contributors</h2>
<p>Selected submissions may be featured on our blog, newsletter, or highlighted as part of LLmachine’s contributor network.</p>
</div>
</div>
</section>
<style>
#write-for-us {
background-color: #1e1e1e;
color: #fff;
padding: 60px 20px;
font-family: "Segoe UI", sans-serif;
}
#write-for-us h1, #write-for-us h2 {
color: #4CAF50;
}
#write-for-us p {
color: #ccc;
max-width: 800px;
margin: 1rem auto;
font-size: 1.1rem;
line-height: 1.6;
text-align: center;
}
form#contribute-form {
background-color: transparent;
border: 1px solid #444;
padding: 20px;
border-radius: 8px;
max-width: 600px;
margin: 2rem auto;
}
form#contribute-form input,
form#contribute-form textarea {
background-color: #2c2c2c;
color: #fff;
border: 1px solid #555;
padding: 10px;
width: 100%;
margin-bottom: 15px;
border-radius: 6px;
font-size: 1rem;
}
form#contribute-form input::placeholder,
form#contribute-form textarea::placeholder {
color: #aaa;
}
.cta-button {
background-color: #4CAF50;
color: white;
padding: 12px 24px;
border: none;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
}
.cta-button:hover {
background-color: #45a049;
}
</style>