···33<!--
44feel free to remove all of this!
55---
66-v2: CSS and JS are all on the same HTML file. this version does not have the customizable tooltips!
66+v1: remember to keep everything on the same folders when installing somewhere else unless you know what you're doing! recommended to use a code editor like visual studio code or brackets when editing.
77---
88more html and css resources @ https://www.w3schools.com/ + https://developer.mozilla.org/en-US/docs/Learn/HTML
99---
···2020 <title>yukika template</title>
2121 <!-- CSS link -->
2222 <link href="body.css" rel="stylesheet">
2323+ <!-- customizable tooltips -->
2424+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
2525+ <script src="tooltip/tooltip-jquary.js"></script>
2626+ <script src="tooltip/tooltip.js"></script>
2727+ <!-- end of tooltips -->
2328 <style>
2429 * {
2530 box-sizing: border-box;
···3944 }
40454146 body {
4242- background: url(https://doqmeat.github.io/HTML-templates/yukika/assets/bg.png);
4747+ background: url(assets/bg.png);
4348 background-attachment: fixed;
4449 background-size: cover;
4550 background-repeat: no-repeat;
···8792 position: absolute;
8893 width: var(--wide);
8994 height: var(--long);
9090- background: #ebbb3f;
9595+ background-color: #ebbb3f;
9696+ /* background-image: url(THE PATH TO YOUR IMG HERE if youd like to have your own bg); */
9197 z-index: 2;
9298 cursor: grab;
9399 box-shadow: 2px 2px 1px white;
···216222 }
217223218224 .portrait img {
219219- width: 100%
225225+ width: 100%;
220226 }
221227222228 .info1 {
···244250 color: var(--yellow);
245251 }
246252253253+ /*this is the tooltip aka the title pop up*/
254254+ #s-m-t-tooltip {
255255+ font-weight: normal;
256256+ max-width: 200px;
257257+ text-align: center;
258258+ z-index: 9999;
259259+ margin: 30px 15px 7px 12px;
260260+ padding: 5px;
261261+ border-radius: 10px;
262262+ border: 1px dashed black;
263263+ font-size: 16px;
264264+ font-style: italic;
265265+ letter-spacing: 3px;
266266+ text-shadow: 1px 1px 1px black;
267267+ color: var(--yellow);
268268+ background: white;
269269+ }
270270+247271 /*animations*/
248272249273 .passportANI {
···298322 transform: rotate(0deg);
299323 margin-top: 60px;
300324 opacity: 1;
301301-302325 }
303326 }
304327···371394 width: 200px;
372395 }
373396374374- @media only screen and (max-width:920px) {
397397+ @media only screen and (max-width: 920px) {
375398 :root {
376399 --left: 170px;
377400 }
378401 }
379402380380- @media only screen and (max-width:600px) {
403403+ @media only screen and (max-width: 600px) {
381404 #hide {
382405 display: block;
383406 }
···402425 <!-- passport cover -->
403426 <div title="click to open!" id="cover" onclick="passportOpen()">
404427 <h1>passport</h1>
405405- <img src="https://doqmeat.github.io/HTML-templates/yukika/assets/passport-cover.png" alt="passport cover">
428428+ <img src="assets/passport-cover.png" alt="passport cover">
406429 </div>
407430408431 <!-- opened passport -->
···412435 <!-- top half -->
413436 <div class="up">
414437 <h2>F2U yukika passport template</h2>
415415- <p>coded by <a href="https://doqmeat.com">doqmeat.com</a>. source code can be found in its <a href="https://github.com/doqmeat/HTML-templates/tree/main/yukika" target="_blank">github folder</a> / .zip download through my <a title="VGen" href="https://vgen.co/doqmeat/product/yukika-passport-html-template/d9fe25c1-8873-4c03-b1f4-1f4319f03c8c" target="_blank">shop</a>!</p>
438438+ <p>coded by <a href="https://doqmeat.com">doqmeat.com</a> / <a href="https://tangled.org/doqmeat.com/yukika-passport-template" target="_blank">source code</a> / <a title="VGen product link" href="https://vgen.co/doqmeat/product/yukika-passport-html-template/d9fe25c1-8873-4c03-b1f4-1f4319f03c8c" target="_blank">download</a></p>
416439 <p>tested on firefox and chrome.</p>
417440 <p>readable on mobile if you rotate your phone.</p>
418441 <p>you can use this for whatever you want, and edit it to your hearts content!</p>
···428451 <div class="down">
429452 <div class="header">
430453 <h2>여권 passport </h2>
431431- <img src="https://doqmeat.github.io/HTML-templates/yukika/assets/passport-symbol.png" width="35px" align="right" alt="passport image">
454454+ <img src="https://tangled.org/doqmeat.com/yukika-passport-template/raw/main/assets/passport-symbol.png" width="35px" align="right" alt="passport image">
432455 </div>
433456 <div class="portrait">
434457 <!-- below is where your img goes! -->
435435- <img src="https://doqmeat.github.io/HTML-templates/yukika/assets/pic.jpg" alt="portrait">
458458+ <img src="https://tangled.org/doqmeat.com/yukika-passport-template/raw/main/assets/pic.jpg" alt="portrait">
436459 </div>
437460 <!-- 1st column -->
438461 <div class="info1">
···467490 <div class="up">
468491 <h3>important notes:</h3>
469492 <ul>
470470- <li><b>i've provided 2 versions: one with the code separated into different files(v1), and another one with all the code on the same page (v2)</b></li>
471471- <li><b>for v2:</b> while i have provided hyperlinks of my own, it is always best to save imgs and other things to your own server.</li>
472472- <li><b>for those using neocities' dashboard using v1:</b> keep in mind that you can't just drag folders into the dashboard bc neocities fucks them up bad. create the folder first and drop the items instead.</li>
493493+ <li><b>for those using neocities' dashboard:</b> if using on neocities, keep in mind that you can't just drag folders into the dashboard bc neocities fucks them up bad. create the folder first and drop the items instead.</li>
473494 </ul>
474495475496 <!-- top half end div-->
···550571 btn1.style.display = "none";
551572 btn2.style.display = "none";
552573 }
574574+553575 </script>
554576</body>
555577
+1-1
index.html
···5454 <!-- top half -->
5555 <div class="up">
5656 <h2>F2U yukika passport template</h2>
5757- <p>coded by <a href="https://doqmeat.com">doqmeat.com</a>. source code can be found in its <a href="https://github.com/doqmeat/HTML-templates/tree/main/yukika" target="_blank">github folder</a> / .zip download through my <a title="VGen product link" href="https://vgen.co/doqmeat/product/yukika-passport-html-template/d9fe25c1-8873-4c03-b1f4-1f4319f03c8c" target="_blank">shop</a>!</p>
5757+ <p>coded by <a href="https://doqmeat.com">doqmeat.com</a> / <a href="https://tangled.org/doqmeat.com/yukika-passport-template" target="_blank">source code</a> / <a title="VGen product link" href="https://vgen.co/doqmeat/product/yukika-passport-html-template/d9fe25c1-8873-4c03-b1f4-1f4319f03c8c" target="_blank">download</a></p>
5858 <p>tested on firefox and chrome.</p>
5959 <p>readable on mobile if you rotate your phone.</p>
6060 <p>you can use this for whatever you want, and edit it to your hearts content!</p>