HASH TAGS

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
cmsintent
 
 
Posts: 115
Joined: Tue Oct 09, 2007 4:59 pm
Location: Alberta, Canada
Contact:

HASH TAGS

Post by cmsintent »

Sorry ... not sure of what I am evening asking!

I have a created a webpage with an embedded video using the INSERT > VIDEO ... MEDIA PLAYER set to HTML5 Video ... which I have done many times.

My client has now asked me
"If we can I would like to start hash tagging the videos so that they are easily accessed like for this one #gasterology #johnhopkins etc"

I know nothing of social media but I suspect this a social media process??

This is where I get stumped ... is this something that is possible in WWB to is this totally a different process?

Thanks ... and sorry if this fall under the stupid question section!
User avatar
Pablo
 
Posts: 23440
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: HASH TAGS

Post by Pablo »

In HTML, you can't directly add a hashtag to a video element like you would with social media posts or links. HTML is a markup language used for structuring content on a web page, and it doesn't have built-in support for adding hashtags to videos.
User avatar
wwonderfull
 
 
Posts: 1586
Joined: Fri Aug 21, 2020 8:27 am
Contact:

Re: HASH TAGS

Post by wwonderfull »

Hashtags or #tags are not frequently used in web development the same way they are on social media sites like Twitter or Instagram. However, there are a few situations in which you can use them in web development:

URL Fragments: You can use hashtags as URL fragments to go to particular webpage locations. The browser will scroll to the HTML element on that page that has a matching id attribute when you append a hashtag and an identifier to a URL (for example, http://example.com/page#section1) (e.g., div id="section1">.../div>). To create a smooth scrolling navigation, this is frequently used for single-page applications (SPAs).

Example:

Code: Select all

<a href="#section1">Go to Section 1</a>
<div id="section1">
   <!-- Content of Section 1 -->
</div>
JavaScript: To make code more readable in JavaScript, hashtags are frequently used to create comments or placeholders. They act as annotations or reminders for developers rather than being executed as code.

Example:

Code: Select all

// #TODO: Implement this functionality
function someFunction() {
   // Code here
}
HTML Information: To provide additional information or metadata about an element, hashtags can be used as part of data attributes in HTML elements. For later retrieval or filtering, you can store tags associated with content using data attributes like data-hashtag, for instance.

Example:

Code: Select all

<div class="media-content" data-hashtag="webdevelopment,html,css">
   <!-- Content here -->
</div>

Custom Use Cases: In some web applications, developers may decide to employ hashtags for special functions like content categorization or filtering. You could, for instance, put in place a system where readers can add hashtags to articles or posts to make them easier to find later.

Example:

Code: Select all

<article>
   <h2>Web Development Trends in 2023</h2>
   <p>...</p>
   <div class="hashtags">
      <span>#webdevelopment</span>
      <span>#trends</span>
      <span>#2023</span>
   </div>
</article>
Hash Tags are more like tagging a particular subject which is targetted or trending to highlight and search it which is directly linked like a category. It is like a menu filter but for contents. If some one writes food in search even that is a tag because it is targetting particular category which is linked to a certain subject. In easy way to understand if you have blogs or articles hashtags can be beneficial to find and filter post depending on the categorical or subjectual #TAG the blog posts were tagged with because then you will get more filtered result. It does not effect seo but it does help user usability and increases usability and makes filtering contents easier for users.

In current social media #tags are used to highlight a particular subject and get filtered results or people who tagged there post with the same to be more relevant and related to the topic that they are searching. So in a way it is a filtering strategy which is being used in mainstream media.

It's crucial to remember that the use of hashtags in web development is not standardized, and their functionality or meaning may change depending on the situation. The provided examples show a few typical uses for hashtags, but their application is flexible and is determined by the demands of your project.
cmsintent
 
 
Posts: 115
Joined: Tue Oct 09, 2007 4:59 pm
Location: Alberta, Canada
Contact:

Re: HASH TAGS

Post by cmsintent »

Thank you !!! .. very helpful
Post Reply