-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (102 loc) · 3.62 KB
/
index.html
File metadata and controls
107 lines (102 loc) · 3.62 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
<!DOCTYPE html>
<html>
<head>
<title>Scalaml</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="icon" href="asset/icon.png" type="image/png">
</head>
<body class="w3-content" style="max-width:1300px">
<!-- First Grid: Outline & Work -->
<div class="w3-row">
<div class="w3-black w3-container w3-center" style="height:700px">
<div class="w3-padding-64">
<!-- <img src="" class="w3-margin w3-circle"> -->
<img style="filter:invert(100%)" src="asset/icon.png" height="150">
<h1 style="font-family:verdana"><b>ScalaML Studio</b></h1>
<p>I have no idea why I made this website</p>
</div>
<div class="w3-padding-16">
<a href="#work" class="w3-button w3-black w3-block w3-hover-teal w3-padding-16">Our Projects</a>
<a href="#news" class="w3-button w3-black w3-block w3-hover-teal w3-padding-16">News</a>
<a href="#contact" class="w3-button w3-black w3-block w3-hover-teal w3-padding-16">Contact</a>
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-light-grey w3-center" style="height:700px" id="work">
<div class="w3-padding-64">
<h2>Our Projects</h2>
<p>Some of our latest work</p>
</div>
<div class="w3-row">
<div class="w3-half">
<h4>CIRCLE SANDBOX</h4>
<p>2D Shooter<p/>
<p>(Love2D)</p>
<a href="https://github.com/scalamlstudio/circle-sandbox" class="w3-button w3-block w3-hover-purple w3-padding-16">GITHUB</a>
</div>
<div class="w3-half">
<h4>TFOL SANDBOX</h4>
<p>2D Platformer</p>
<p>(Love2D)</p>
<a href="https://github.com/scalamlstudio/tfol-sandbox" class="w3-button w3-block w3-hover-purple w3-padding-16">GITHUB</a>
</div>
</div>
</div>
</div>
<!-- Second Grid: News & Contact -->
<div class="w3-row">
<div class="w3-dark-grey w3-container" style="min-height:700px" id="news">
<div class="w3-padding-64 w3-center">
<h2>News</h2>
<p>The History of Scalaml Studio</p>
<div class="w3-container w3-responsive">
<table class="w3-table">
<tr class="w3-black">
<th>Time</th>
<th>Title</th>
</tr>
<tr class="w3-white">
<td>2019-01-29</td>
<td>Purchase Scalaml.com</td>
</tr>
<tr class="w3-gray">
<td>2019-05-07</td>
<td>Create Github Group Scalaml Studio</td>
</tr>
<tr class="w3-white">
<td>2019-06-18</td>
<td>Publish the Website</td>
</tr>
<tr class="w3-gray">
<td>2019-08-08</td>
<td>Create TFOL-SANDBOX</td>
</tr>
<tr class="w3-white">
<td>2019-09-15</td>
<td>Create CIRCLE-SANDBOX</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div class="w3-row">
<div class="w3-light-grey w3-container w3-center" style="height:700px" id="contact">
<div class="w3-padding-64">
<h1>Contact</h1>
</div>
<div class="w3-padding-64">
<a href="https://en.wikipedia.org/wiki/Milky_Way" class="w3-button w3-block w3-hover-indigo w3-padding-16">Milky Way</a>
<a href="mailto:service@scalaml.com" class="w3-button w3-block w3-hover-indigo w3-padding-16">service@scalaml.com</a>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-white w3-padding-16">
<a href="#" style="text-decoration:none;font-family:verdana;font-size:32px"><img src="asset/icon.png" height="50"><b style="padding:15px">ScalaML</b></a>
</footer>
</body>
</html>