Jennifer

Last Login:
November 28th, 2022



Gender: Female
Status: Single
Age: 33
Sign: Cancer
Country: United States

Signup Date:
June 29, 2020

Subscriptions:

07/19/2020 11:07 PM 

July 19 - Profile News

So as per usual I've been working my ass off for that all mighty greenback, which unfortunately has sapped the will to code straight out of me *sadface* Tonight, however, I decided I was going to just buck up little camper and make that damned green template for my page and well I did just that! LOL. So yeah, now I've added a green template to the rotation so in all we have: Red, Blue, Purple, Orange and now Green! Isn't coding fun? ROFL. And that brings me to my next point...

I am going to start focusing on adding more and more tutorials/code to what meager stuff I have available now *cough* The point is, now that I'm basically done with the design of my page, at leat for now, I'll be able to focus more on what I wanted to do in the first place, help others out! Let's face it, it's hella fun to code our own pages and really express ourselves in such a unique and cool way! I love to see people succeed in whatever it is they're trying to accomplish and if I can help in any way to make that a reality for someone, well, that's pretty kick ass ;) So yeah, soon, very soon I'll be adding more and more and I thin I'm going to start with my code for preventing a right-click on your page. You may have noticed that you can't right click on my page or highlight any text. Well, that's all thanks to my code and I'll be releasing it here soon so you too can frustrate noob code hunters hehe. Okay well, I've prattled on long enough for this so... arrivederci!

Return to News Index

07/13/2020 04:25 PM 

July 13.2 - Profile News

Some of you have been asking me what it's like living over here in Eugene Oregon. Eugene is a college town, home to the University of Oregon, my alma mater in fact as well as the home and birthplace of Nike! I've always found this place to be quite beautiful, even cloudy, Eugene is picturesque. It does rain here more than it doesn't but the flip side to that is we have one of the greenest valleys in North America! Eugene lives in the county of Lane and Lane County is known as the number 1 in the world for grass seed. So needless to say my alergies hate me twice a year LOL. Anywho, here's a few images of Eugene, enjoy!



Back to News Index

07/13/2020 07:55 AM 

July 13 - Profile News

I've been really busy lately, not going anywhere anytime soon but I wanted to drop an update since a few folks are worried that this site is starting to drop in popularity LOL. Don't worry hon, this place isn't going anywhere and besides, change is a constant. Better learn to embrace that sh*t less you get left behind, that's never cool. That said, what have I been up to? Well, some of you know that I work as the big cheese in regards to growing dank pot. That's right, I live in Oregon where it's 100% legal here and therefore I've been working as a legal Chief Gardener for our little medical marijuana grow-op. Basically I ensure our little plants are as happy as they can be LOL. So yeah, I've been doing that and of course, testing... duh LOL. Hopefully I'll have a bit more time on my hands this week and so I'll be able to post more tutorials and the like. We shall see!

Return to News Index

07/10/2020 04:08 PM 

HTML & CSS Tutorials

HTML Introduction
How-to Add Music To Your Profile Using The Audio Tag

07/10/2020 01:16 PM 

HTML Introduction

HTML is the standard markup language for creating Web pages.

What Is HTML?

  • HTML stands for Hyper Text Markup Language
  • HTML is the standard markup language for creating Web pages
  • HTML describes the structure of a Web page
  • HTML consists of a series of elements
  • HTML elements tell the browser how to display the content
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

A Simple HTML Document

Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Example Explained
  • The <!DOCTYPE html> declaration defines that this document is an HTML5 document
  • The <html> element is the root element of an HTML page
  • The <head> element contains meta information about the HTML page
  • The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
  • The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
  • The <h1> element defines a large heading
  • The <p> element defines a paragraph

What Is An HTML Element?

An HTML element is defined by a start tag, some content, and an end tag:

<tagname>Content goes here...</tagname>

The HTML element is everything from the start tag to the end tag:

<h1>My First Heading</h1>
<p>My first paragraph.</p>

Note: Some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end tag!

Return to Tutorial Index

07/10/2020 01:03 PM 

News Index

07/08/2020 11:42 PM 

July 08 - Profile News

I woke up refreshed and decided to get froggy with a couple of things. You may have noticed that I have two templates that my profile will rotate through and they were: Red and Blue. Today I've added an Orange and Purple template as well! So I now have 4 templates that my profile will rotate through! Squee!!! Anywho, I'm seriously considering adding a green one but for now that'll just have to remain a thought. Until then, please enjoy and as always, if you have any questions or comments, go ahead and click the link below to let your voice be heard!

Return to News Index

07/08/2020 09:15 PM 

How-to Add Music To Your Profile Using The Audio Tag

 HTML Skill Level - Beginner

Okay, for starters, we're going to ONLY be working with HTML or Hypertext Markup Language. It's literally the most basic of computer languages and therefore not only the best one to start off with but this little tutorial should be relatively easy to follow. That said, let's jump into the meat and potatos of all this...

First and foremost, for a browser to be able to parse (read and execute) "code" one needs what's called tags and in this case we'll be working exclusively with the "audio" tag. As with all HTML code you'll need a tag to tell the browser to start parsing the code and one to tell it to stop. We reflect this by the following:

<audio></audio>

That's it in it's most basic of forms. Of course this wont do anything for you as you'll need to tell the browser what to do with the audio and you'll also need an audio file uploaded and hosted by a 3rd party host (don't worry, we'll get there ;)

So now that you've got your audio tag, let's fill in the rest yeah?

<audio src="https://media.vocaroo.com/mp3/o5oKypomf3" controls loop autoplay></audio>

Let's break this down...
src means source, as in where does the file live.
controls tells the browser that you want the audio controls to appear on your page, these are play, pause, volume, etc. You know, your basic music player controls.
loop means you want the file to play, then when it's over, play again and so on. Not including "loop" in your tag tells the browser to play it once and then not again until the page is reloaded type thing.
autoplay is pretty self-explanatory. The problem with most modern browsers, however, is they have thier media handlers set to do not autoplay media, so if you wish to experience audio on page load, you'll need to turn that feature off in the browser's settings. Otherwise, regardless of code you'll need to manually play, stop, etc.

Okay, that's it! Pretty easy huh? You now literally have everything you'll need to make this work except a place online to store your mp3.

Head on over to https://vocaroo.com/ It's pretty easy to figure out what to do here so go ahead and follow the onscreen instructions. Just know that unless you copy down the mp3 location once it's uploaded, you'll lose it forever as this site doesn't have a search feature or a member login.

Now, once you're there and you've uploaded your file you will need the last bit of alphanumeric jumbled mess at the end of the url it provides you. Do NOT copy the whole thing into your page, it wont work. You'll need the first part of what I posted above from the src attribute and that is: https://media.vocaroo.com/mp3/

Now, it's the gobblygook at the end that will differ with each uploaded song and in the example above it is: o5oKypomf3. Yours will be different, just copy that mess and paste it after the last forward slash after the mp3 in the url 3 lines up so that when you've done it, it'll look like this: https://media.vocaroo.com/mp3/o5oKypomf3

At this point, all you'll need to do is put it all together so it looks like this:
<audio src="https://media.vocaroo.com/mp3/o5oKypomf3" controls loop autoplay></audio>

Now, simply copy that audio code there (with your new url of course) and paste it into your about me section or wherever you want really. On page load, if you've done it right, it'll work like a champ!

If this tutorial helped you out, please take a moment to leave a comment and let me know! Thanks! ♥

Return to Tutorial Index

07/07/2020 12:45 PM 

July 07 - Profile News

Whelp, I've been working my perverbial ass off on trying to get this page looking at least somewhat decent =P There's still oh so much work to do here but thankfully I'm really enjoying my time and basically having a blast drowning in the nostalgia hahahahaha!

I want you all to know that although I'm not willing to share my code for my modal popup (the box you see when you first load my page and then when you hit accept it fades out to the page proper). That not only took me the better part of two days to "perfect" but I kinda want to keep it as "mine" before I share it out. That said, I'm not at all opposed to sharing other codes I've created and yes, I create pretty much everything you see here myself. I never went to school for this as it's seriously just a hobby for me. I don't do this professionally, I'm actually the Chief Gardener over at a medical marijuana grow-op here in Oregon. I'm responsible for ensuring our crops are the most potent and healthy but I specifically brew RSO and treat cancer victims with a 100% success rate I might add ;)

So yeah, if you need help, please feel free to hit me up! Much love everyone! *hearts*

Return to News Index

[ This blog post is viewable to friends only ]

View All Posts



Mobile | Terms Of Use | Privacy | Cookies | Copyright | FAQ | Support

© 2024. FriendProject.net All Rights Reserved.