-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (108 loc) · 4.45 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bruno Mussoi Mendonça</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is the personal website of Bruno Mussoi Mendonça, a programmer and designer who showcases some of his projects and experiences">
<link rel="icon" href="favicon.webp">
<link rel="stylesheet" href="css.css" type="text/css">
<link rel="stylesheet" href="portfolio.css" type="text/css">
<link rel="stylesheet" href="cyber.css" type="text/css">
<link rel="stylesheet" href="slime.css" type="text/css">
<link rel="stylesheet" href="construction.css" type="text/css">
<link rel="stylesheet" href="mars.css" type="text/css">
<link rel="stylesheet" href="school.css" type="text/css">
<link rel="stylesheet" href="w95.css" type="text/css">
<link rel="stylesheet" href="casino.css" type="text/css">
<script type="text/javascript">
if(!localStorage.getItem("theme")){
localStorage.setItem("theme", "portfolio");
}
document.documentElement.className = localStorage.getItem("theme");
</script>
</head>
<body>
<section id="sobre">
<img src="bruno.webp" alt="Photo of Bruno">
<h2>Hello,</h2>
<p>I'm <span class="color_changer">Bruno</span>, programmer and designer. On this website you can see some of my projects and experiences.</p>
</section>
<section id="sites" class="link_list">
<h1>Sites</h1>
<div class="highlight">
<img src="infinite_monkey.webp" alt="Site preview">
<h2>Infinite Monkey Typewriter</h2>
<p>Web Toy/Experiment about the famous theorem</p>
<a href="https://brunosupremo.github.io/infinite_monkey/">Visit site</a>
</div>
<div class="highlight">
<img src="quiosque_ventania.webp" alt="Site preview">
<h2>Quiosque Ventania</h2>
<p>Kiosk at Praia do Centro in Itanhaém</p>
<a href="https://brunosupremo.github.io/Quiosque-Ventania/">Visit site</a>
</div>
<div class="highlight">
<img src="nn_bartender.webp" alt="Site preview">
<h2>NN Bartenders</h2>
<p>Bar services for events</p>
<a href="https://brunosupremo.github.io/nnBartender/">Visit site</a>
</div>
<div class="highlight">
<img src="youtuber.webp" alt="Site preview">
<h2>Youtuber</h2>
<p>Youtuber/Gamer site</p>
<a href="https://brunosupremo.github.io/BrunoSupremo-youtube-channel-site/">Visit site</a>
</div>
<!-- <a href="#contato">Quer seu site aqui?</a> -->
<!-- check more sites here -->
</section>
<section id="temas">
<h1>Themes</h1>
<div id="options" class="highlight">
<button onclick="change_theme(this)" data-theme="portfolio">Portfolio</button>
<button onclick="change_theme(this)" data-theme="cyber">Cyber</button>
<button onclick="change_theme(this)" data-theme="slime">Slime</button>
<button onclick="change_theme(this)" data-theme="construction">Construction</button>
<button onclick="change_theme(this)" data-theme="mars">Mars</button>
<button onclick="change_theme(this)" data-theme="school">School</button>
<button onclick="change_theme(this)" data-theme="w95">90s PC</button>
<button onclick="change_theme(this)" data-theme="casino">Casino</button>
<!-- other theme ideas:
Nature & Wildlife, Underwater World, Steampunk, Art Gallery, Retro Diner,
love, eco, military, map, geocities
-->
<button onclick="change_theme(this)" data-theme="notheme">No theme</button>
<script type="text/javascript">
let theme = localStorage.getItem("theme");
document.querySelector("[data-theme='"+theme+"']").classList.add("current");
</script>
</div>
<p>The design of a website should resonate with its visitors. <span class="color_changer">Select a theme above</span> and watch this website change right before your eyes.</p>
</section>
<section id="contato">
<h1>Contacts</h1>
<p class="link_list highlight">
<a href="mailto:[email protected]">[email protected]</a>
<a href="https://github.com/BrunoSupremo">github.com/BrunoSupremo</a>
</p>
<form action="https://formbold.com/s/3V085" method="POST">
<h2>Or quick form:</h2>
<label>
Name:
</label>
<input type="text" name="name" placeholder="Your name (optional)">
<label>
E-mail:
</label>
<input type="email" name="_replyto" placeholder="[email protected] (optional)">
<label>
Message:
</label>
<textarea name="mensagem" required placeholder="Your message here! :)"></textarea>
<button type="submit">Submit</button>
</form>
</section>
<script src="js.js"></script>
</body>
</html>