I am working on an online demo for my Python3 program, MLCPAI.
By the way MLCPAI stands for Machine Learning Conversation in Python3 AI
Right now, the landing page is extremely ugly (language)
any suggestions for the index.html to clean it up?
Link to repo:
https://github.com/Izder456/mlcpai
Link to landing page:
https://mlcpai.netlify.com/
I'm also looking for translators for big languages (spanish, russian, french, greek, etc.), I translated the russian side of the page (my russian is pretty bad, lol). If any one of you's are up to the task of translating it, I would greatly appreciate it.
code for index.html:
Code:
I am trying to keep this page simple, yet elegant. If you look at the page it's very ugly.
By the way MLCPAI stands for Machine Learning Conversation in Python3 AI
Right now, the landing page is extremely ugly (language)
any suggestions for the index.html to clean it up?
Link to repo:
https://github.com/Izder456/mlcpai
Link to landing page:
https://mlcpai.netlify.com/
I'm also looking for translators for big languages (spanish, russian, french, greek, etc.), I translated the russian side of the page (my russian is pretty bad, lol). If any one of you's are up to the task of translating it, I would greatly appreciate it.
code for index.html:
Code:
<!DOCTYPE html>
<html>
<html lang="en">
<meta charset="UTF-8">
<title>MLCPAI!</title>
<link href="https://fonts.googleapis.com/css?family=Caveat&display=swap&subset=cyrillic,cyrillic-ext,latin-ext" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap&subset=cyrillic,latin-ext" rel="stylesheet">
<style>
h1,h2,h3,h4,h5,h6 {font-family: "Caveat", cursive}
body,p,nav {font-family: "Open Sans", sans-serif}
</style>
<center>
<h1>Machine Learning Conversation in Python3 (AI)</h1>
<h1>Машинный учебный разговор на Python3 (AI)</h1>
<h2>Language</h2>
<h2>Язык</h2>
<nav>
<ul>
<li><a href="./index-en.html">English (Английский Язык)</a></li>
<li><a href="./index-ru.html">Русский (Russian)</a></li>
</ul>
</nav>
</center>
</html>
I am trying to keep this page simple, yet elegant. If you look at the page it's very ugly.