Home Entrance Wiki Search Login Register

Welcome, Guest. Please login or register.
March 06, 2023, 02:06:48 am
Forum activity rating: Five Star Posts: 100/24hrs Show Unread Posts | Unread Replies | Own Posts | Recent Posts
News: Art will save the world!

Show Posts

Messages | * Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - dotmidi

Pages: 1 2 [3] 4
31
☔︎ ∙ Help & Tutorials / Custom Fonts
« on: December 13, 2022, 05:02:48 pm »
is it just me but do downloading custom font's and following any tutorial to make them work is just.. NOT WORKING?! :TnT:
I tried every code and followed every tutorial and used even different types of fonts and font files!
I am beginning to think maybe neocities does not support custom fonts maybe? :sad:

32
✁ ∙ Web Crafting / Fashion Page
« on: December 08, 2022, 02:22:06 pm »
i'm considering making a page on my site dedicated to my outfits , and also to discuss the issues of fast fashion and promote diy and slow fashion!
i highly would reccomend looking into slow fashion alternatives and teach useful skills like sewing, visible mending, painting, etc. for clothes :ozwomp: :ozwomp:
just wondering if anyone thinks this is a good idea :smile:

33
⛽︎ ∙ Technology & Archiving / Flip-phones!
« on: December 07, 2022, 04:07:38 pm »
A topic of conversation between some of my irls and me is phone ergonomics, particularly an article that InvisibleUp wrote https://invisibleup.com/articles/39/

To summarize my topic of conversation, basically modern day phones are wayy too heavy and way too big! I mean seriously, think about how much the iPhone weighs in your pocket.. **it sags my pants just having it in my pockets** its so baaad.. :ohdear: :sad:
Me and a few of my friends have been considering getting flip-phones and im wondering what you guys think! When I was much younger I remember my aunt having a flip-phone that also could shift to the side and have a fully-fledged keyboard! (Perhaps some model of a blackberry, im unsure)
If anyone has flipphones or is an avid flip-phone enthusiast please let me know whats best and affordable, or if you are just a flip phone haver in general i would love to see what your phone looks like! :ozwomp:
To be honest, I would probably get the samsung flipphone if it werent for the price...

34
⛄︎ ∙ Forum Discussion / Thank you!
« on: December 06, 2022, 02:35:53 am »
Thanks Melon for making such a nice and easy, as well as accessible webring! it is a blast and im happy to say this is the first one i've been in
i also really enjoy my time here on the forums and hope our community here will continue to flourish, i get so much helpful input and amazing songs/movies reccomendations!


35
☞ ∙ Life on the Web / Website Recipe Books!
« on: December 06, 2022, 02:32:57 am »
Show me your recorded recipe books on the net!
Honestly, I think this is one of my favorite things to see one people's neocities pages so I'm going to make my own!! I would like to see y'all's for inspiration :dive:

36
☞ ∙ Life on the Web / Interacting with other Users!
« on: December 05, 2022, 04:40:53 pm »
just felt like making it be known its nice to comment things under people's neocity pages and i definitely reccomend it more often, a nice compliment to others means a lot! i also suggest replying to people's responses more on this forum as i have been trying to as well :smile: :transport:
here are some supportive comments i have put under people's neocities to show as an example:


37
☞ ∙ Life on the Web / DECEMBER DECEMBER DECEMBER
« on: December 01, 2022, 07:06:18 pm »
 :ozwomp: :ozwomp: :ozwomp:
OH MY GOODNESS ITS WINTER!!
Will you guys be decorating your webpages for this joyous season and holidays?
I'm considering having snowflakes on my web page!


38
☞ ∙ Life on the Web / Email Culture
« on: November 29, 2022, 03:04:08 pm »
Do any netizens send emails to each other on a regular basis? Once I sent an email to someone on neocities about their dubstep shrine!! :ozwomp:
When did you consider reaching out to someone via Email on the net? :smile:

39
☔︎ ∙ Help & Tutorials / Moving Eyeballs!
« on: November 29, 2022, 02:48:02 pm »
So I found this code from https://www.mf2fm.com/rv/dhtmlmovingeyes.php they have a lot of cool decorations!
Basically it is a set of moving eyeballs which is perfect for me because I love muppets
the issue is though, it is set and fixed on the center of the webpage and i am NOT good at javascript one bit
I understood how to not make it "fixed" however, i dont know how to put it on the top of my page and be able to serve as a header I suppose
here is the code if any of you are good at javascript :ozwomp:

Code
<script type="text/javascript">
// <![CDATA[
var width=144; // radius of the eyes in pixels
var colour="#06c"; // colour of the eye - bluey green in this case
var iris="#111"; //  colour of the iris (normally black);

/***************************\
*  Moving Eyeballs Effect *
*(c)2012-20 mf2fm web-design*
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
\***************************/
var swide=800;
var shigh=600;
var sleft=sdown=0;

var glasses, lefteyeball, righteyeball, lefteye, righteye;

function addLoadEvent(funky) {
 var oldonload=window.onload;
 if (typeof(oldonload)!='function':wink: window.onload=funky;
 else window.onload=function() {
  if (oldonload) oldonload();
  funky();
 }
}

addLoadEvent(draw_eyes);

function draw_eyes() {
 var i, j, l, r;
 glasses=document.createElement("div":wink:;
 i=glasses.style;
 i.position="fixed";
 i.top="50%";
 i.left="50%";
 i.width="1px";
 i.height="1px";
 i.overflow="visible";
 i.zIndex="100";
 i.pointerEvents="none";
 document.body.appendChild(glasses);
 lefteyeball=document.createElement("div":wink:;
 righteyeball=document.createElement("div":wink:;
 i=lefteyeball.style;
 j=righteyeball.style;
 i.position=j.position="absolute";
 i.width=j.width=(width*2)+"px";
 i.height=j.height=(width*2)+"px";
 i.top=j.top=(-width)+"px";
 i.left=(-2.1*width)+"px";
 j.left=(.1*width)+"px";
 i.borderRadius=j.borderRadius="50%";
 i.backgroundColor=j.backgroundColor=colour;
 i.background=j.background="radial-gradient(circle at "+width+"px "+width+"px, #fff, "+colour+" 75%)";
 i.opacity=j.opacity="0.5";
 i.zIndex=j.zIndex="100";
 glasses.appendChild(lefteyeball);
 glasses.appendChild(righteyeball);
 lefteye=document.createElement("div":wink:;
 righteye=document.createElement("div":wink:;
 i=lefteye.style;
 j=righteye.style;
 i.position=j.position="absolute";
 i.width=j.width=width+"px";
 i.height=j.height=width+"px";
 i.top=j.top=(-width/2)+"px";
 i.left=(-1.6*width)+"px";
 j.left=(.6*width)+"px";
 i.borderRadius=j.borderRadius="50%";
 i.backgroundColor=j.backgroundColor=iris;
 i.opacity=j.opacity="0.8";
 i.zIndex=j.zIndex="101";
 glasses.appendChild(lefteye);
 glasses.appendChild(righteye);
 set_width();
 set_scroll();
}


document.onmousemove=mouse;
function mouse(e) {
 var x, y, xdiff, ydiff, distn;

 y=(e)?e.pageY:event.y;
 x=(e)?e.pageX:event.x;
 x-=sleft;
 y-=sdown;

 xdiff=x+(1.1*width)-(swide*0.5);
 ydiff=y-shigh/2;
 distn=Math.pow(xdiff*xdiff+ydiff*ydiff,0.5);
 if (distn>width/2.5) {
  xdiff=xdiff*width/distn/2.5;
  ydiff=ydiff*width/distn/2.5;
 }
 lefteye.style.top=(ydiff-width/2)+"px";
 lefteye.style.left=(xdiff-1.6*width)+"px";

 xdiff=x-(1.1*width)-(swide*0.5);
 ydiff=y-shigh/2;
 distn=Math.pow(xdiff*xdiff+ydiff*ydiff,0.5);
 if (distn>width/2.5) {
  xdiff=xdiff*width/distn/2.5;
  ydiff=ydiff*width/distn/2.5;
 }
 righteye.style.top=(ydiff-width/2)+"px";
 righteye.style.left=(xdiff+0.6*width)+"px";
}

document.onscroll=set_scroll;
function set_scroll() {
 if (typeof(self.pageYOffset)=="number":wink: {
  sdown=self.pageYOffset;
  sleft=self.pageXOffset;
 }
 else if (document.body.scrollTop || document.body.scrollLeft) {
  sdown=document.body.scrollTop;
  sleft=document.body.scrollLeft;
 }
 else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  sleft=document.documentElement.scrollLeft;
	sdown=document.documentElement.scrollTop;
 }
 else {
  sdown=0;
  sleft=0;
 }
}

window.onresize=set_width;
function set_width() {
 var sw_min=999999;
 var sh_min=999999;
 if (document.documentElement && document.documentElement.clientWidth) {
  if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
 }
 if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
 }
 if (document.body.clientWidth) {
  if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
 }
 if (sw_min==999999 || sh_min==999999) {
  sw_min=800;
  sh_min=600;
 }
 swide=sw_min;
 shigh=sh_min;
}
// ]]>
</script>


40
⛺︎ ∙ Cinema / Perfect Blue
« on: November 29, 2022, 02:30:25 pm »
Just finished watching Perfect Blue and wow it was very.. engaging! and hard to understand, watched a few theory videos and I think I've gotten a better understanding hehe
To any Perfect Blue watchers, how did you feel with your first watch through?? (ALso.. I LOVE the art for this anime, it was very interesting story wise and perspective too its hard to tell when things r real or fake!! adds to the psychosis episode the protag is having)


41
© ∙ Music Room / Song/Band You Are Growing Fond Of?
« on: November 29, 2022, 02:16:05 pm »
 :ozwomp: Let me know some songs you recently are gaining a liking towards
Mine are: Happiness Is A Warm Gun by The Beatles
and Give Me Back My Man by The B-52's!!
 :dive: stay safe netizens and i hope you have a good journey on the web today! :4u: :transport:

42
☞ ∙ Life on the Web / imood forums
« on: November 28, 2022, 06:51:02 pm »
do you guys read old forums at all on imoods? i've been reading ones all the way back from 2001 and its pretty entertaining :ozwomp: :ozwomp:
i feel like netizens have not really changed much from the past ehehe (in a good way) :4u:
below is an example of what i mean


43
☔︎ ∙ Help & Tutorials / Repeating Background?? help!
« on: November 28, 2022, 02:34:36 pm »
For some reason my background decides to give a background to my other text and content? Does anyone know how to fix this!!
The actual photo is a functioning repeating background and does work, however it is making a 2nd background, basically?? :sad: :sad:
 grrr :angry:
Pretty sure it has something to do with my style sheet!!
Code
<!DOCTYPE html>
<html lang="en">
  <head>
   <meta charset="utf-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title> tha blog :smile: </title>
   <link rel="icon" href="favicon.png">
   <style>	
     html,body{
     min-height:100%;
     background-image: url("https://sadhost.neocities.org/images/tiles/rrbg.gif":wink:;
    background-color: #cccccc;
     }
     h1,h2,h3{
     color:red;
     text-shadow:4px 4px 6px brown;
     letter-spacing:2px;
     text-indent:50px;
     }
     a{
     color:red;
     text-decoration:underline;
     }
     a:hover{
     color:blue;
     text-decoration:none;
     }
     b{
     color:hotpink;
     }
     i{
     color:blueviolet;
     }
     u{
     color:omg:range;
     font-weight:bold;
     }
     textarea{
     background:cornsilk;
     font-family:georgia,times,serif;
     width:100%;
     height:200px;
     }
     p {
     text-align:justify;
     margin:10px 42px;
     text-indent:25px;
     color:yellow;
     }
     img {
	   float: center
   	margin: 5px;
	   }
     .content{
     background: rgba(0, 0, 0, 0.5);
     margin:20px auto;
     min-width:80%;
     max-width:90%;
     padding:25px;
     color:black;
     font-family:times;
     font-size:25px;
     line-height:120%;
     }
     .center {
     text-align:center;
     padding:20px;
     }
     .center > p {
     color:yellow;
     text-align:center;
     }

     .image1 {
     display:block;
     max-width:99%;
     height:auto;
     margin-left:auto;
     margin-right:auto;
     border:4px solid darkslateblue;
     box-shadow:8px 8px pink;
     }
 
   </style>


44
☺︎ ∙ Chat & General Interests / job stuff
« on: November 24, 2022, 08:40:53 pm »
 :smile: :smile: I just got a job earlier this week!
To anyone chatting on the forums: Do you have a job? What do you work in ? (I am a baker!! IM A BAKER NOW!! :dive: )

Happy Thanksgiving everybody!! Stay good


45
✁ ∙ Web Crafting / What are your homepage must haves?
« on: November 23, 2022, 04:46:54 am »
 :ozwomp: :ozwomp: i recently just finished my landing page and i am now coding my home page!! so far my plan is to have an update log and a link to my tumblr and maybe a poll!

what do you guys like having on your home page so i can keep note of all your cool finds? :smile:

Pages: 1 2 [3] 4


Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | SMFPacks Super Quote Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery!