-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 4.19 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title langs="title">LearnCode|Project-driven, demand-oriented programming learning platform</title>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/registerLogin.css">
<link rel="stylesheet" href="./css/headerBar.css">
<link rel="stylesheet" href="./css/letterRain.css">
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="./js/insertHeader.js"></script>
<script src="./js/insertForm.js"></script>
<script src="./js/languages.js"></script>
<script src="./js/languageSwitch.js"></script>
<script type="module" src="./js/projectExercises.js"></script>
<script src="./js/loginModal.js" defer></script>
<script src="./js/letterRain.js" defer></script>
</head>
<body>
<div class="container">
<button class="start-button" langs="startLearning" onclick="myProjects()">Start Learning</button>
<h1><span langs="target">Project-Driven Demand-Oriented</span></h1>
<p class="subtitle" langs="subtitle">Master new programming languages from scratch</p>
<!-- <p class="subtitle" langs="slogan">远离刷题痛苦,用实际需求点燃编程学习的动力</p> -->
<p class="features" langs="description">Project-based | Built-in Editor | Online Debugging | Step-by-step Guidance</p>
<div class="language-tags">
<p class="language-tag-row1">
<span class="language-tag">Python</span>
<span class="language-tag">JavaScript</span>
<span class="language-tag">TypeScript</span>
</p>
<p class="language-tag-row2">
<span class="language-tag">Golang</span>
<span class="language-tag">Rust</span>
<span class="language-tag">HTML&CSS</span>
</p>
<p class="language-tag-row3">
<span class="language-tag">Solidity</span>
<span class="language-tag">NodeJS</span>
<span class="language-tag">React</span>
</p>
</div>
<div class="info-boxes">
<div class="info-box">
<h3 langs="projectDriven">Demand-Oriented Learning</h3>
<p langs="projectDescription">Learn through actual requirements, apply theoretical knowledge to practice</p>
<img src="./images/placeholder2.png" alt="">
</div>
<div class="info-box">
<h3 langs="onlineEnv">Online Development Environment</h3>
<p langs="onlineEnvDescription">Built-in terminal and online debugging tools, code and test anytime, anywhere</p>
<img src="./images/placeholder3.png" alt="">
</div>
<div class="info-box">
<h3 langs="detailedGuide">Detailed Commentary Guidance</h3>
<p langs="detailedGuideDescription">Step-by-step guidance with detailed comments to help you complete each project easily</p>
<img src="./images/placeholder4.png" alt="">
</div>
</div>
<div class="footer-container">
<p>
<span>
Powered by:<a href="https://www.github.com/snjyor">snjyor</a>
</span>
<span>
Feedback:
<a href="mailto:[email protected]"><ion-icon name="mail-outline"></ion-icon></a>
<a href="https://www.discord.com"><ion-icon name="logo-discord"></ion-icon></a>
<a href="https://www.github.com/snjyor"><ion-icon name="logo-github"></ion-icon></a>
</span>
<span>
<select name="language" id="language" onchange="languagesChanged()">
<option value="en">English</option>
<option value="zh-CN">中文</option>
</select>
</span>
</p>
</div>
</div>
</body>
</html>