-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (80 loc) · 2.98 KB
/
index.html
File metadata and controls
91 lines (80 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentin Klap</title>
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Josefsin">
<script src="https://cdn.jsdelivr.net/npm/p5@1.4.0/lib/p5.js"></script>
<script src="sketch.js"></script>
</head>
<body id="bodey">
<div>
<div id="container">
</div>
<ul>
<li>Home</li>
<li>art</li>
<li>about me</li>
</ul>
</div>
<!--ß
<div style="height:400px; width:100%; clear:both;"></div>
<div id="hebfressi">
<h1>
<33333
</h1>
</div>-->
<!--
<ul class="navbar">
<li class="logoPicture">
<img src="./logo.svg" alt="logo" onclick="ChangeSite('Home')">
</li>
<li class="navli"><a class="nav" onclick="ChangeSite('Collections')">Collections</a></li>
<li class="navli"><a class="nav" onclick="ChangeSite('Art')">Art</a></li>
<li class="navli"><a class="nav" onclick="ChangeSite('AboutMe')">About me</a></li>
<li class="navli"><a class="nav" onclick="ChangeSite('Contact')">Contact</a></li>
<li class="navli"><a href="intro.php" class="nav">Poem</a></li>
</ul>
<div class="home" id="Home">
<h1>HOOOOOME SWEEEET HOME</h1>
</div>
<div class="collections" id="Collections">
<h1>Collections</h1>
</div>
<div class="art" id="Art">
<h1>Artsy Fartsy Martsy</h1>
</div>
<div class="aboutme" id="AboutMe">
<h1>Bla Bla Bla Me Me Me</h1>
</div>
<div class="contact" id="Contact">
<h1>valentinklap@gmail.com, just text me</h1>
<form method="post" action="contact.php" class="contact">
<label for="Name">Name (Nickname):</label><br>
<input type="text" name="name" id="Name"><br>
<label for="Email">eMail:</label><br>
<input type="text" name="email" id="Email"><br>
<label for="Subject">subject:</label><br>
<input type="text" name="subject" id="Subject"><br>
<label for="Message">Message:</label><br>
<textarea name="message" id="Message" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit">
</form>
</div>
<script>
destination = "Home"
document.getElementById("Collections").style.display='none';
document.getElementById("Art").style.display='none';
document.getElementById("AboutMe").style.display='none';
document.getElementById("Contact").style.display='none';
function ChangeSite(goal) {
document.getElementById(destination).style.display='none';
document.getElementById(goal).style.display='block';
destination = goal
}
</script> -->
</body>
</html>