-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenderpreview.html
More file actions
62 lines (59 loc) · 2.11 KB
/
Copy pathrenderpreview.html
File metadata and controls
62 lines (59 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Render Projects</title>
<link rel="icon" href="./asset/favicon.png">
<link rel="apple-touch-icon" href="./asset/favicon.png">
</head>
<body>
<div class="bar">
<button onclick="window.location.href='index.html'">Home</button>
<nav>
<a href="./code.orgProjects.html"><button>Code.org Projects</button></a>
<a href="./GitHub"><button>GitHub Projects</button></a>
<a href="https://codepen.io/richardliucode"><button>CodePen Projects</button></a>
<a href="./renderpreview.html"><button>Render Projects</button></a>
<a href="./browserExtensions.html"><button>Browser Extensions Projects</button></a>
<a href="./jspackages.html"><button>NPM Packages Projects</button></a>
</nav>
</div>
<br>
<br>
<br>
<div class="frame">
<h1>Render projects</h1>
<p>Github Page only host static sites. So I use <a href="https://render.com">Render</a> to run website with backend server.</p>
</div>
<br>
<div class="frame">
<h2>Form</h2>
<p>This is a simple form app</p>
<a href="https://richardliuform.onrender.com/" target="_blank">Visit Site</a>
</div>
<br>
<div class="frame">
<h2>Factorial Calculator</h2>
<p>This is a factorial calculator app</p>
<a href="https://richardliu-factorialcalculator.onrender.com/" target="_blank">Visit Site</a>
</div>
<br>
<div class="frame">
<h2>Weather</h2>
<p>This is a simple weather app</p>
<a href="https://weather-yjc1.onrender.com/" target="_blank">Visit Site</a>
</div>
<br>
<div class="frame">
<h2>Proxy Server</h2>
<p>This is a simple proxy server app. You use the param of "url" to access the target url you want to open in the proxy server. Example "https://richardliu-nodejsproxyserver.onrender.com/?url=https://google.com"</p>
<a href="https://weather-yjc1.onrender.com/" target="_blank">Visit Site</a>
</div>
<br>
<footer class="bottombar">
<p style="margin-left:15px;">© 2025 Richard Liu</p>
<p>RichardCode</p>
<p style="margin-right:18px;">Host by GitHub</p>
</footer>
</body>
</html>