-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (68 loc) · 3.5 KB
/
index.html
File metadata and controls
81 lines (68 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Victor's Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="sudoku/style.css">
</head>
<body>
<header id="section_top">
<div class="journal-name">
<p>development journal</p>
<p class="typewritter-effect" >by: victor lau</p>
</div>
<div class = "contact">
<a style="margin-right: 15px;" href="mailto:victorlaugamedev@gmail.com">email
<!-- <img class = "icon" style ="height: 65px; margin-right: 25px;" src = "images/gmail.png"></img> -->
</a>
<a href = "https://github.com/vicwlau" target = "_blank">github
<!-- <img class = "icon" style = "height: 44px; margin-right: 25px;"src="images/github-mark.svg"></img> -->
</a>
</div>
</header>
<main>
<div class = "section-container">
<p class = "year-number">2024</p>
<div class = "line-divider"></div>
<p class="section-description">solving soduko puzzle using wave function collapse algorithm</p>
<div class = "section-sudoku section-component"></div>
<p class="section-description"><strong style="font-weight: 400;">wordzi!</strong> a word game where you guess the hidden letters to complete the words</p>
<div class = "section-component" >
<a href = "https://apps.apple.com/us/app/wordzi/id6480348619"
target = "_blank"
>
<img src = "images/appstore_download.svg" style="width: clamp(75px, 9vw, 200px);"></img>
</a>
<img src = "images/wordzi.png" style="margin-top: 10px; max-height: 500px; max-width: 950px; width: 100%;"></img>
</div>
</div>
<div class = "section-container">
<p class = "year-number">future ideas...</p>
<div class = "line-divider"></div>
<div class = "tile-container">
<div class="card card-large">procedural generation for city and roads</div>
<div class="card card-small">chess engine with interesting rules</div>
<div class="card card-medium">fluid dynamics with particle system</div>
<div class="card card-small">smart meal planning tool</div>
<div class="card card-empty card-large"></div>
<div class="card card-empty card-medium"></div>
<div class="card card-empty card-small"></div>
<div class="card card-empty card-large"></div>
<div class="card card-empty card-medium"></div>
<div class="card card-empty card-medium"></div>
<div class="card card-empty card-small"></div>
</div>
</div>
<p><a href="#section_top" style="height:10px">back to top</a></p>
</main>
<nav></nav>
<script src="two.js"></script>
<script src ="header_bg.js"></script>
<script type='module'src="sudoku/app.js"></script>
</body>
</html>