Tumgik
#are html tags case sensitive
ceyhanmedya · 2 years
Text
HTML
New Post has been published on https://hazirbilgi.com/what-is-html-when-and-by-whom-was-html-created/
HTML
What is HTML? When and by whom was HTML created?
HTML  is a markup language that defines the structure of web pages. HTML is one of the basic building blocks of every website . For this reason, it is among the first details that web developers will want to learn. 
While HTML is an important building block, it is not enough to make a web page look good. It  must be supported by CSS  and  JavaScript  . HTML is essentially code and is used to structure the content of a web page. 
The content on the web page can consist of a number of different paragraphs, images and tables. It is possible to format them with HTML. In this way, the web browser knows how to configure the web page that a person visits and displays it in the direction desired by the developer.
What is HTML and when was it invented?
HTML or  hypertext markup language is a markup language developed for displaying materials or data on the internet. Each material has a known buyer location,  called a web page  . Web pages contain hypertext links that allow the fetching of related pages.
HTML is the markup language used to code web pages. HTML  was designed by  British scientist Sir Tim Berners-Lee in 1980 . HTML markup tags  contain document elements such as headings, paragraphs, and tables. Once formatted, they can be viewed by programs or applications known as web browsers.
When viewing a web page, web browsers interpret it according to permitted technology. Thus, items such as headings, paragraphs, and tables are presented adapted to the screen size and font used. HTML documents also contain anchor links, called links to other web pages.
What is Semantic HTML?
Semantic HTML is the conveying of literal meanings for the uses of HTML tags. Semantic HTML was used effectively throughout most of the 90’s and  became an important part of the standard HTML structure . Since the late 90’s,  CSS has become more important in web pages when it has been used effectively .
Semantic HTML 
It consists of tags such as , ,,, and . One of the most important reasons to use semantic HTML tags is that web crawlers can easily index the web page. In this direction, it is possible to improve the web page in terms of SEO . Also, semantic HTML is important for accessing web pages from screen readers.
What are HTML Versions?
After HTML was designed, it has developed in many different forms over the years. For this reason, the HTML versions that are used effectively have changed from time to time. There are five different versions of HTML that are used effectively. Each of them made extra contributions to the HTML structure, making it easier for the developers to use it.
HTML 1.0: It is the first version developed for HTML. It was published in 1991 and was used effectively until 1995.
HTML 2.0: Version released in 1995. It has been accepted as the standard version in web design. Added support for features such as text boxes and buttons.
HTML 3.2: Published by the W3C in 1997. It provided extra support in terms of table creation and form elements. It is considered the official standard since 1997.
HTML 4.01: Released in 1999. It is the stable language for the HTML language and is considered the official standard. It has added CSS support to the HTML language.
HTML5: It is the newest version of the HTML language and was announced in 2008. This version  is developed by W3C and  WHATWG .
What’s the Difference Between HTML Tags, Elements, and Attributes?
HTML tags , HTML elements, and HTML attributes are often confused and used interchangeably when defining. However, there are differences between these three elements. Each  HTML tag has its own unique meaning. HTML elements are used to describe content. HTML attributes provide additional information for existing HTML elements.
What are HTML Tags?
HTML defines the formatting of a particular web page. For this reason, the text, images and other content on the page should be displayed in a shaped way. For example, you may want some text to be uppercase, lowercase, bold, or italic. To do this,  you need to use HTML tags .
HTML tags are like keywords that define how the web browser will display the content. When a web browser reads a document containing HTML, it reads it from top to bottom and from left to right. Thanks to HTML tags, a web browser can distinguish between HTML content and simple content. Each HTML tag can have different properties.
What are HTML Elements?
HTML  consists of three elements , opening tag, content and  closing tag . Some elements are used as empty. HTML elements are often confused with HTML tags. However, an element consists of a combination of three different elements. All HTML files are made up of elements. These elements are responsible for creating web pages. They also describe the content on the web page.
Theoretically, the opening tag, content, and closing tag should go together. Some elements may not have content and closing tags. Such elements  are called empty elements or self- closing elements  . For example, a line spacer  and a straight long line.
elements in this structure.
What are HTML Attributes?
HTML attributes are placed in the opening tag, and they  range from the “style” to  the “id” description. HTML attributes help convey more information about an element. In addition, these attributes ensure that needs such as styling elements on the web page with JavaScript are met.
While HTML attributes provide additional information about elements, they are modifiers of the HTML element. Each element defines the behavior of the element to which it is attached. HTML attributes must always be applied with the start tag. Although the names to be given to HTML attributes are case sensitive, standard usage consists of lowercase letters.
html,are html tags case sensitive,are html and css programming languages,are html and css the same,are html files safe,are html attachments safe,are html and javascript the same,are html tables still used,are html ids case sensitive,are html sites reliable,are html attributes case sensitive,create an html file,create an html page,can html files be dangerous,create an html table,create an html form,can html id have spaces,create an html element in javascript,create an html link,convert an html to pdf,
0 notes
spark-solution055 · 6 days
Text
HTML or XHTML: Which Syntax Will Give You Fewer Headaches?
When diving into web development, one of the first decisions you'll face is whether to use HTML or XHTML. Both are markup languages essential for creating web pages, but they come with different rules and characteristics. This guide will explore the nuances of HTML and XHTML, helping you decide which syntax might offer you fewer headaches.
Tumblr media
Introduction
When building websites, the choice between HTML and XHTML can significantly impact your development process. Both HTML (HyperText Markup Language) and XHTML (eXtensible HyperText Markup Language) are crucial for structuring web pages, but they come with different sets of rules and features. Understanding these differences can help you avoid common pitfalls and select the syntax that best fits your needs.
What is HTML?
Definition
HTML stands for HyperText Markup Language. It is the standard language used to create and design web pages. HTML provides the basic structure of web documents by using a system of tags and attributes to define elements on the page.
History and Evolution
HTML has been around since the early days of the web. Since its inception in 1991 by Tim Berners-Lee, it has evolved through several versions. HTML5, the latest version, introduced new elements and APIs to better support modern web applications.
Basic Structure
A typical HTML document starts with a <!DOCTYPE html> declaration, followed by an <html> element that contains a <head> and a <body>. Within these sections, you can include various elements like headings, paragraphs, links, and images.
What is XHTML?
Definition
XHTML stands for eXtensible HyperText Markup Language. It combines the flexibility of HTML with the strict syntax rules of XML (eXtensible Markup Language). XHTML aims to improve web standards and ensure consistent rendering across different browsers.
Differences from HTML
While XHTML is similar to HTML, it enforces stricter rules. For example, XHTML documents must be well-formed XML documents, meaning they must adhere to precise syntax rules such as proper tag closure and case sensitivity.
Basic Structure
An XHTML document also begins with a <!DOCTYPE html> declaration but requires all tags to be properly closed and nested. It follows a more rigorous syntax compared to HTML.
Key Differences Between HTML and XHTML
Syntax Rules
HTML is more lenient with syntax rules. For example, tags can be left unclosed, and attribute values can be omitted if they are boolean. XHTML, on the other hand, requires all tags to be closed and attributes to be quoted.
Case Sensitivity
HTML is not case-sensitive. Tags and attributes can be written in any combination of uppercase and lowercase letters. XHTML requires all tags and attributes to be in lowercase.
Tag Closure
In HTML, some tags like <br> or <img> don’t require closing tags. XHTML mandates that all tags must be closed, either with a separate closing tag or a self-closing slash (e.g., <br />).
Advantages of HTML
Flexibility
HTML's flexibility allows for faster development and easier adjustments. Developers can write less strict code without worrying about compliance issues.
Browser Compatibility
HTML has broad compatibility with various browsers. Older browsers and newer ones alike generally support HTML, making it a safe choice for many projects.
Ease of Use
For beginners, HTML is easier to learn and use. Its less strict rules mean fewer errors during development.
Advantages of XHTML
Strict Syntax Rules
XHTML’s strict syntax rules help ensure that documents are well-formed and free of errors. This can lead to more predictable rendering and easier debugging.
Compatibility with XML
Since XHTML is based on XML, it integrates well with other XML-based technologies. This can be beneficial for projects that require data interchange between different systems.
Error Handling
XHTML provides better error handling due to its stricter rules. Errors are often easier to identify and fix compared to HTML.
Common Issues with HTML
Browser Inconsistencies
HTML’s lenient syntax can lead to inconsistencies in how different browsers render the same page. This may require additional testing and adjustments.
Deprecated Elements
Some HTML elements and attributes have become outdated. Using these can lead to issues with modern browsers and may impact future-proofing your website.
Common Issues with XHTML
Strict Compliance Requirements
The strict rules of XHTML can be challenging, especially if you’re used to HTML’s more relaxed approach. Small mistakes, like forgetting to close a tag, can cause your entire document to fail.
Potential for More Errors
Due to its stricter nature, XHTML can lead to more frequent errors during development. This requires more careful coding and validation.
When to Use HTML
Simple Projects
HTML is suitable for straightforward projects where the flexibility and ease of use outweigh the need for strict standards.
Legacy Systems
For maintaining older websites that were originally built with HTML, sticking with HTML might be easier and more practical.
When to Use XHTML
Complex Projects
If you’re working on a complex project that requires rigorous data handling or integration with other XML-based technologies, XHTML might be the better choice.
XML-Based Applications
For applications that need to comply with XML standards, XHTML provides the necessary structure and error handling.
Best Practices for Using HTML and XHTML
Writing Clean Code
Regardless of the syntax you choose, writing clean and organized code is crucial. It makes your code more readable and maintainable.
Validating Your Code
Use validation tools to check your HTML or XHTML code. This helps catch errors early and ensures your code meets the standards.
Staying Updated with Standards
Web standards evolve, so stay informed about the latest developments in HTML and XHTML to keep your skills and code current.
Conclusion
Choosing between HTML and XHTML depends on your project requirements and personal preferences. HTML offers flexibility and ease of use, while XHTML provides strict syntax rules and compatibility with XML. Consider the complexity of your project, the need for strict standards, and your own comfort level with these languages when making your decision.
FAQs
What are the main differences between HTML and XHTML?
HTML is more flexible and less strict with syntax, while XHTML enforces stricter rules and is XML-based.
Can I mix HTML and XHTML in the same document?
No, mixing HTML and XHTML in the same document can lead to errors. Stick to one syntax for consistency.
Which is better for mobile web development?
Both HTML and XHTML can be used for mobile web development, but HTML5 is often preferred due to its modern features and flexibility.
How do I transition from HTML to XHTML?
To transition, start by ensuring your HTML is well-formed and follows XHTML rules. Use validation tools to check for compliance.
Are there any tools to help with HTML or XHTML validation?
Yes, tools like W3C Markup Validation Service and HTML Tidy can help validate and clean up your code.
0 notes
gpscomputeracademy3 · 7 months
Text
best computer academy in jaipur for web designing
4. Web Designing:- GPS computer Academy is Best Computer Academy for Web Designing.  Web  Designing  is  process to  create  website.  this  process  is  called  as  Web  Designing.  To create  Web  Designing  we  used  following tools:- 
a.  Html  language 
b.   CSS 
c.    JavaScript 
a.  Html language:-    To create Web Designing  we used Html language. It is important  coding  language to create  Web Pages.  Html language  provide Web Pages  and to create  Web Design.  In Html language  we  used Html language which provide  Html  
Tag. These Html tag to create Html language and we provide Web pages. 
b.   CSS:-    It is important tool of Web Designing.  CSS is a process in which Website  
Become Attractive. To became Website Attractive we need  CSS. CSS full form is cascading style sheet.  In CSS  we   used  our  Web  Pages   text,  font,  colour, layout etc. To implement  responsive  Web Design  we implement  CSS. 
c.    JavaScript:-  It is important  tool  of  Web  Designing.  It is object oriented language which we used web page scripting. JavaScript is used for multimedia, animation, etc. 
JavaScript is case sensitive language. 
Type of  Web Designing:- 
a.  front end Web Design 
b.  back end Web Design 
a.  front end Web Design:-  when we open the website  then visitor show design of website is called  as front end Web Design.  To know front end Web Design  We know photoshop, Html, CSS, JavaScript etc. 
b.   back end Web Design:-  It is important step of Designing. In this type of Designing  user not show Designing. We used PHP and Database language in back end  Web Design. 
Benefit of Web Designing:- 
a. To know Web Design we easily earn online income. 
b.  we can do creativity and we  earn our own website Design. 
c. To complete the Web Designing course  we open our own institute. 
Career option after Web Designing:- 
a.  Game Developer 
b. Multimedia programmer 
c.  UX Analyst 
d.  Web Developer  e.  Applications Developer 
Tumblr media
https://gpscomputeracademy.com/
0 notes
kumarom · 8 months
Text
HTML Attribute
HTML attributes are special words which provide additional information about the elements or attributes are the modifier of the HTML element.
Each element or tag can have attributes, which defines the behaviour of that element.
Attributes should always be applied with start tag.
The Attribute should always be applied with its name and value pair.
The Attributes name and values are case sensitive, and it is recommended by W3C that it should be written in Lowercase only.
You can add multiple attributes in one HTML element, but need to give space between two attributes.
Tumblr media
0 notes
dancingbookwyrm-codes · 10 months
Text
First day of HTML
Disclamer, this is more of a review for me since I *did* start to learn html a few years ago. However, I didn't get too far and I'm not just going to jump right back in to where I was when I left off, so we're restarting from the very beginning.
Today I went through the "Introduction", "Editors", "Basic", and "Elements" pages and to summarize those lessons:
HTML stands for Hyper Text Markup Language, and is the primary language used for coding web pages
HTML uses elements to describe the structure of a webpage
Every HTML document must begin with the <!DOCTYPE html> declaration
An HTML element is defined using the format: <tagname>Content goes here</tagname>
HTML documents are created out of nested elements, meaning that one element can contain another
NEVER SKIP THE END TAG unless you want to risk unexpected errors when you try to run your code
HTML is not case sensitive, so it doesn't matter whether you write or . Just try to keep it consistent throughout your code!
Here's a list of the elements learned so far in those lessons:
<html> - the root element. This is used at the start and end of any document, with everything on the webpage sitting between the tags.
<head> - used for meta information that isn't displayed on the page itself, such as the <title> element
<title> - this is the title of your webpage that appears on your browser tab
<body> - the body of the document, a container for all visible elements on the webpage
<h1> - defines a heading of the highest priority
<h2> - defines a heading of the second highest priority
<h3> - defines a heading of the third highest priority
(and so on up until <h6>)
<p> - defines a paragraph
<br> - defines a line break in a paragraph (note: <br> is an "empty element" because it has no content and therefore does not have an end tag)
Links and images both use attributes within the tag to provide additional information about the element.
<a> - a web link. Can be nested within a paragraph or heading. Uses the href attribute to specify the link's destination. For example:
<a href=https://www.website.com>Linked text goes here</a>
<img> - an image. Uses src to specify the source file, alt to set alternative text, width and height.
<img src="image.jpg" alt="an image" width="96" height="102">
To create an HTML document you can simply open any basic text editor (for Windows, Notepad works perfectly), write your code, and save as a .htm or .html file, preferably with UTF-8 encoding.
You can then open the file in your browser to see your very own HTML webpage!
Reference: I'm using the w3schools HTML tutorial
0 notes
techpccleanup · 10 months
Text
Professional website developer
A professional website developer is an individual skilled in creating and maintaining websites using various programming languages, software, and design tools. They possess a deep understanding of web development technologies and frameworks, allowing them to build functional, user-friendly, and visually appealing websites that cater to specific needs and goals.
Key responsibilities of a professional website developer typically include:
Tumblr media
Coding and Programming: They are proficient in programming languages such as HTML, CSS, and JavaScript, and often use frameworks like React, Angular, or Vue.js for front-end development. They may also work with back-end technologies like Node.js, Python, Ruby on Rails, or PHP.
Design Implementation: They translate web design mockups into fully functional websites, ensuring responsiveness across various devices and browsers. They have an eye for design and use their coding skills to bring visual concepts to life.
Content Management Systems (CMS): Many developers are adept at working with popular CMS platforms like WordPress, Joomla, or Drupal, customizing themes, and integrating plugins to meet client requirements.
Testing and Debugging: They perform rigorous testing to identify and fix bugs, ensuring the website’s functionality, security, and performance. This includes optimization for speed and search engine rankings.
Collaboration and Communication: Effective communication with clients, designers, and team members is crucial. They collaborate to understand project requirements, provide technical guidance, and offer solutions that align with business objectives.
Continual Learning and Adaptability: Given the rapidly evolving nature of web technologies, a professional website developer stays updated with industry trends, new tools, and best practices. They adapt to new methodologies and technologies to enhance their skills and deliver modern, innovative solutions.
Project Management: In some cases, they manage project timelines, resources, and client expectations, ensuring timely delivery and meeting project goals.
Overall, a professional website developer plays a pivotal role in creating and maintaining websites that are not only visually appealing but also functional, user-friendly, and aligned with the client’s needs and specifications. They combine technical expertise with creativity to deliver high-quality web solutions.
A professional website developer offers a range of benefits and features that contribute significantly to the success and effectiveness of a website:
Technical Expertise: They bring in-depth technical knowledge and skills in programming languages, frameworks, and development tools. This expertise ensures the creation of a robust, efficient, and secure website.
Customization and Tailored Solutions: Professional developers can create custom solutions tailored to specific business needs and requirements. They design websites that reflect the brand identity and meet the functional objectives of the organization.
Responsive Design: They ensure websites are responsive across various devices (desktops, laptops, tablets, and smartphones). This adaptability enhances user experience and accessibility, which is crucial for engaging a diverse audience.
SEO Optimization: Website developers implement SEO best practices during the development process. This includes optimizing site speed, using proper meta tags, structuring content, and ensuring mobile-friendliness, contributing to higher search engine rankings.
Security Measures: They implement robust security measures to safeguard the website from potential threats such as malware, hacking attempts, and data breaches. This instills trust among users and protects sensitive information.
Scalability and Future-Proofing: Professional developers build websites that can easily scale as businesses grow. They use scalable architecture and technologies that allow for seamless expansion and integration of new features or functionalities in the future.
Cross-Browser Compatibility: They ensure that the website functions consistently across different web browsers, providing a uniform experience for all users regardless of their browser preferences.
Content Management Systems (CMS) Integration: Developers proficient in CMS platforms like WordPress or Drupal enable easy content management for clients, allowing them to update and modify content without extensive technical knowledge.
Testing and Maintenance: They conduct thorough testing to identify and resolve bugs before launching the website. Additionally, they provide ongoing maintenance services, ensuring the site remains up-to-date, and secure, and performs optimally.
Effective Communication and Collaboration: Professional developers effectively communicate project progress, requirements, and timelines, fostering a collaborative environment with clients and other team members, ensuring project success.
Overall, the expertise and skills of a professional website developer contribute significantly to creating high-quality, functional, and user-friendly websites that meet business objectives and provide a positive experience for site visitors.
The Role of a Professional Website Design Company :
A website is not just an online brochure; it’s a dynamic platform that can significantly impact your brand’s reputation and business success. Here are some key reasons why investing in a professional website design company is crucial:
1. First Impressions Matter
Your website is often the first point of contact between your business and potential customers. A professionally designed website can create a positive first impression, instilling trust and credibility in the minds of visitors.
2. User Experience Matters
User experience (UX) is a critical factor in the success of your website. A professional web design ensures that your site is easy to navigate, loads quickly, and is accessible across various devices, providing a seamless experience for visitors.
3. Search Engine Visibility Matters
Search engine optimization (SEO) is the key to being discovered on the web. A professional web design company will incorporate SEO best practices into your site, ensuring higher visibility on search engines and attracting organic traffic.
4. Brand Consistency Matters
Your website should reflect your brand’s identity and values consistently. A professional website design company can create a cohesive design that aligns with your branding, fostering recognition and trust among your audience. visit now -professional website design company .
1 note · View note
Text
How to do programming in PHP
PHP, short for Hypertext Preprocessor, is a popular web programming language. Simplicity, adaptability, and dynamic and interactive online applications are its hallmarks. This is the spot to learn PHP programming for beginners. This guide will teach you PHP fundamentals step-by-step.
Prerequisites
Basic HTML and CSS expertise is helpful before learning PHP. Understanding these languages simplifies PHP code integration into web sites.
Setting Up Your Environment
PHP programming requires a development environment. The essential setup stages are:
Web Server: XAMPP, WAMP, or MAMP, which include PHP, Apache, MySQL, and other technologies, can be used. Use a cloud-based development environment instead.
Text editor or IDE: Use Visual Studio Code, Sublime Text, or PhpStorm, which supports PHP.
PHP Installation: Without XAMPP, you must install PHP individually. The official PHP website (php.net) offers the newest version.
Writing Your First PHP Script
Start with a simple "Hello, World!" example to learn PHP:
```php �?php echo "Hello, World!"; ?>
Save the code as a .php file (e.g., hello.php) and store it in your web server's document root folder.
To run the script, navigate to http://localhost/hello.php in your browser. The page should say "Hello, World!"
The PHP syntax
PHP code is contained in <?php and ?> tags. The server interprets PHP code within these tags.
These syntactic components are important:
Statements terminate with a semicolon (;). Variables begin with a $ symbol (e.g., $variable_name).
Comments can be single-line (//) or multi-line (/* */). Web page content is produced using echo commands. Variables, data types
PHP supports integers, floats, texts, booleans, arrays, and objects. The variables must begin with a $ and are case-sensitive. Example of variable usage:$name = "John"; $age = 25; $isStudent = true; The Control Structure PHP offers standard control structures such as `if`, `else`, `while`, `for`, and `switch`. These enable code choices and loops.
php if ($age < 18) { echo "You are a minor."; } otherwise { echo "You are an adult."; }
Functions
PHP functions encapsulate reusable code. How to define and invoke a function:
PHP function greet($name) { echo "Hello, $name!"; }
Say hello to "Alice"
Working with Forms
PHP processes HTML form data. To retrieve form data, use the $_POST or $_GET superglobal arrays. Simple form example:
```html Also in `process_form.php`: PHP <?php $username = $_POST["username"]; echo "Welcome, $username!"; ?>
This guide laid the groundwork for PHP programming. As you master the basics, you may learn about databases, user authentication, and dynamic web applications. PHP's large community and copious documentation make it a superb web development language, and there are many online resources to help you learn PHP. Get coding and develop PHP web applications!
0 notes
qupitstechsolutions · 2 years
Text
What is JSON?
JSON is a file format that uses human-readable text for storing and transmitting data objects containing attribute-value pairs and arrays. JSON is used to store information in an organized and easy-to-access manner. JSON stands for JavaScript Object Notation. It offers a human-readable collection of data that can be accessed logically.
History of JSON
Douglas Crockford specified the JSON format in the early 2000s.
The official website was launched in 2002.
In December 2005, Yahoo! starts offering some of its web services in JSON.
JSON became an ECMA international standard in 2013.
The most updated JSON format standard was published in 2017.
Features of JSON
Easy to use – JSON API offers high-level facade, which helps you to simplify commonly used use-cases.
Performance – JSON is quite fast as it consumes very less memory space, which is especially suitable for large object graphs or systems.
Free tool – JSON library is open source and free to use.
Doesn’t require to create mapping – Jackson API provides default mapping for many objects to be serialized.
Clean JSON – Creates clean, and compatible JSON result that is easy to read.
Dependency – JSON library does not require any other library for processing.
Features of JSON
Easy to use – JSON API offers high-level facade, which helps you to simplify commonly used use-cases.
Performance – JSON is quite fast as it consumes very less memory space, which is especially suitable for large object graphs or systems.
Free tool – JSON library is open source and free to use.
Doesn’t require to create mapping – Jackson API provides default mapping for many objects to be serialized.
Clean JSON – Creates clean, and compatible JSON result that is easy to read.
Dependency – JSON library does not require any other library for processing.
What is XML
XML is an extensible markup language that is designed to store data. It is popularly used for transferring data. It is case-sensitive. XML allows you to define markup elements and generate customized markup language. An element is a basic unit in the XML language. The extension of XML file is .xml.
History of XML
XML was also derived from SGML.
Version 1.0 of XML was released in February 1998.
Jan 2001:IETF Proposed Standard: XML Media Types
XML is the Extensible Markup Language.
1970: Charles Goldfarb, Ed Mosher, and Ray Lorie invented GML
The development of XML started in the year 1996 at Sun Microsystem
Features of XML
XML tags are not predefined. You need to define your customized tags.
XML was designed to carry data, not allows you to display that data.
Mark-up code of XML is easy to understand for a human.
Well, the structured format is easy to read and write from programs.
XML is an extensible markup language like HTML.
JSON Code
{
"student": [
{
"roll no": " ae1001",
"name": "ramya",
"gender": "female",
},
{
"roll no" : "ae1002",
"name": " sara",
"gender" : "male",
} ] }
XML code
<?xml version="1.0" encoding ="UTF-8"?>
<root>
<student>
<roll no>ae1001<roll no>
<name>ram</name>
<gender>male</gender>
</student>
<student>
<rollno>ae1002</roll no>
<name>harini</name>
<gender>female</gender>
</student>
</root>
0 notes
rlxtechoff · 2 years
Text
0 notes
andrewleousa · 2 years
Text
Enhance Search Efficiency with Outsourced XML Data Conversion
Among the plenty of markup languages available, Extensible Markup Language (XML) and Hyper Text Markup Language (HTML) are popular and widely used. They are human and machine-friendly programming languages. Both of these have standard words, which are based on syntactic rules of the mark-up languages. But they have unique languages and different applications.
XML has emerged as the most favorable language for data conversions and is a bit more human-readable than HTML. And, professional XML data conversion services are essential to integrate the information flows of businesses. Before delving into the difference between the two languages, know what HTML and XML are.
What is XML?
This markup language is specially designed to store data. Its primary function is to facilitate the seamless transfer of data. Developers use XML to create web-based applications and pages. It is a dynamic and case-sensitive language — this feature is used to transfer the data seamlessly. In addition, this markup language also focuses on generality, simplicity, and usability across the world wide web. Having Unicode for different human languages, XML is present in textual data format and is a widely used language to represent arbitrary data structures leveraged in web services. The ‘.xml’ extension is used to save files present in XML format.
What is HTML?
HTML is leveraged to create as well as design unique web content. Unlike XML, HTML is a human-readable computer language. It uses different attributes and tags to define the layout and structure of the web content. This language allows the users to display the data in a formatted manner. To save an HTML document, you can either the ‘.htm’ or ‘.html’ extension. Another versatile feature of HTML codes is that they can be edited via any basic code editor or even notepad. Besides, these edited codes can be executed in any browser.
Primary Features of XML
Custom Tags
Users get the option to define custom tags, new elements, their order of occurrence as well as their display based on the distinct requirements in XML. This feature is not available in HTML as it only offers fixed tags as well as tag semantics.
Separate Data & Content Presentation
XML conversion enables the users to store data in separate XML files that help in segregating the content from the HTML/CSS used for web display and layout. This assists in managing the display and style of content through XSL stylesheets. One can also modify the look of a webpage or a document without any interference from the content of the document.
Hassle-Free Content Modification
Hassle-free content moderation is yet another impressive advantage of XML — having separate XML files for data storage enables easier content modification. One need not make any changes to the display HTML code in order to modify their data. On the other hand, in HTML, one needs to put in extensive efforts to display dynamic data, each time you plan to make any change to the data.
Improved Search Efficiency
Extensible Markup Language converts data into a machine-readable format that can also be read by humans. The .xml document structure not only facilitates element-by-element aggregation as well as comparison of documents but also allows the element structure and addition of tags that provide context information. As a result, businesses get the dual benefits of intelligent data mining and improved search efficiency.
Better Interactivity
Out of the many versatile features, XML documents are highly-compatible with numerous multimedia elements allowing users to add images, videos, and audio files. You can also include active components such as Java applets or ActiveX. Publishers usually make the best use of this feature when they convert their interactive digital books to XML.
In-House V/s Outsourcing
The next important question that comes to mind is whether to perform the data conversion tasks in-house or outsource. Owing to the concerns over data privacy and security, you might be convinced to get an in-house setup. However, the cost of technology implementation, hiring and training resources, meeting infra requirements, and so on will convince you otherwise.
Outsourcing companies have the potential required to perform data conversion tasks with utmost accuracy and precision. They are equipped with the latest tools, robust workflows, and a time-tested blend of manual workflows. Their QA team conducts rigorous sampling tests to assure that there is no data loss during the process. In addition to this, outsourcing firms have flexible delivery models to ensure efficient, thorough, and accurate outputs across different industries and verticals.
Bottom Line
Collaborating with professional providers is not only a cost and time-efficient option, but also helps businesses to get quality results. Whether you need to convert XML to HTML or convert XML to a webpage, the experts can take care of the entire process. Therefore, you must begin by listing down your project requirements and then find an appropriate offshoring partner.
Read here inspired blog: https://www.datasciencesociety.net/enhance-search-efficiency-with-outsourced-xml-data-conversion/
0 notes
bkzalopet · 2 years
Text
Frames in bluegriffon
DOWNLOAD NOW Frames in bluegriffon
#Frames in bluegriffon how to#
#Frames in bluegriffon software#
#Frames in bluegriffon code#
#Frames in bluegriffon password#
#Frames in bluegriffon software#
Some of these web design software provide advanced functionalities too, such as: you can establish FTP connection and publish a project via FTP, connect to MySQL/ODBC database, add Apache modules, convert spaces to single tabs, and do more. Most of these software provide built-in debugger to search for errors in the code. You can also see the preview of the created web page in browser at any time.
#Frames in bluegriffon code#
As you insert a function, the code is generated itself. You can specify corresponding information of each element like name, value, type, size, etc. You can also add email links, hyperlinks, frames, notes, comments, date, etc.
#Frames in bluegriffon password#
You can insert different form input types like button, password field, text box, radio button, checkbox, tables, image button, etc. You can add forms, tables, lists, multimedia files (image, audio, and video), text area, and other essentials to create a web page. While you can create web pages in real time in Design mode, you can write code for the same in Code mode. Most of these web designers provide two editing modes: Design and Code. These software let you easily design web pages by providing support for ‘code auto-completion’ and suggesting tags. To use these web designer software, you just need to have basic understanding of HTML and CSS languages. Once complete, you can click Close to close the File Manager window.Here is a list of best free web design software for beginners for Windows.If not, correct the error or revert back to the previous version until your site works again. Test your website to make sure your changes were successfully saved.Click Save Changes in the upper right hand corner when done.A dialogue box may appear asking you about encoding.htaccess file and then click on the Code Editor icon at the top of the page. Alternatively, you can click on the icon for the. htaccess file and click Code Edit from the menu. The File Manager will open in a new tab or window. Make sure Show Hidden Files (dotfiles)" is checked.Check the box for Document Root for and select the domain name you wish to access from the drop-down menu.In the Files section, click on the File Manager icon.htaccess files in cPanel's File Managerīefore you do anything, it is suggested that you backup your website so that you can revert back to a previous version if something goes wrong. htaccess file for most people is through the File Manager in cPanel. Edit the file on your computer and upload it to the server via FTP.
#Frames in bluegriffon how to#
htaccess file at some point, for various reasons.This section covers how to edit the file in cPanel, but not what may need to be changed.(You may need to consult other articles and resources for that information.) There are Many Ways to Edit a. It is possible that you may need to edit the. htaccess file, and many scripts such as WordPress, Drupal, Joomla and Magento add directives to the. Redirects and rewriting URLs are two very common directives found in a. htaccess file contains directives (instructions) that tell the server how to behave in certain scenarios and directly affect how your website functions. On platforms that enforce case-sensitivity PNG and png are not the same locations. Notice that the CaSe is important in this example. In this example the image file must be in public_html/cgi-sys/images/ This varies by browser, if you do not see a box on your page with a red X try right clicking on the page, then select View Page Info, and goto the Media Tab. The properties will tell you the path and file name that cannot be found. Right click on the X and choose Properties. When you have a missing image on your site you may see a box on your page with with a red X where the image is missing. On platforms that enforce case-sensitivity example and Example are not the same locations.įor addon domains, the file must be in public_html//example/Example/ and the names are case-sensitive. In this example the file must be in public_html/example/Example/ When you get a 404 error be sure to check the URL that you are attempting to use in your browser.This tells the server what resource it should attempt to request.
DOWNLOAD NOW Frames in bluegriffon
0 notes
bricknahas · 2 years
Text
Javascript css html internship
Tumblr media
#Javascript css html internship password
JavaScript can validate the data the user enters into the form, before it is sent to your Web Application. JavaScript does things that HTML can’t-like logic. Why use JavaScript ? To add dynamic function to your HTML. Embedded in HTML files and can manipulate the HTML itself. What is JavaScript ? A scripting language that works with HTML to enhance web pages and make them more interactive. Inside the head tags, the style tags surround all of the styles for the page. Įxternal Style Sheets Internal styles are used for the whole page. Internal Style Sheets Internal styles are used for the whole page. Inline Style Sheets Inline styles are applied straight into the HTML tags using the style attribute. Whereas the HTML is the content, the style sheet is the presentation of that document. What is CSS CSS = C ascading S tyle S heets CSS is a way to style HTML. HTML Header Tags defines the largest heading and defines the smallest heading. HTML Tag Hi there! Are you guys having fun learning HTML. HTML Tag The tag is used to create a select list (drop-down list) HTML Tag contd… Checkboxes and Radio Button. Used when you want the user to type letters, number, etc.
#Javascript css html internship password
The characters in this field are masked password Defines a checkbox checkbox Defines a clickable button button Description Value A reset button resets all form fields to their initial values reset Defines a radio button radio Defines a password field. A submit button sends form data to a server submit Defines a reset button. Default width is 20 characters text Defines a submit button. HTML Tag Attribute Values Defines a one-line input field that a user can enter text into. Commonly used form elements includes: Text fields Radio buttons Checkboxes List Boxes Submit buttons HTML Tag A form is an area that can contain form elements. Attribute Values Specifies the alignment of a table align Specifies the space between cells cellspacing Specifies the space between the cell wall and the cell content cellpadding Specifies the width of a table width Specifies the width of the borders around a table border Description Value A simple HTML table consists of the table element and one or more tr, th, and td elements. HTML Tag The tag specifies the font face, font size, and font color of text. Text in a pre element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks. HTML Tag The tag defines preformatted text. A Hypertext link Google Output: Google A Email link Email me Output: Email me Attribute for HREF = 'URL' HREF indicates the URL being linked to. HTML Tag - Anchor The tag defines an anchor. The tag has attributes: src, alt, height, width. HTML Tag The tag embeds an image in an HTML page. background - Specifies a background-image for a HTML page. HTML Tag (contd.) Attributes bgcolor - Specifies a background-color for a HTML page. HTML Tag The body element defines the document's body and contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. html) Display your HTML document in Upload it on the Web. Notepad ) Create your HTML document Head - not displayed with body Body Save the HTML (extension of. The element content is everything between the start and the end tag ( Hello ) Some HTML elements have empty content( ) Most HTML elements can have attributes Its not case sensitive - means the same as HTML Syntax Tag usually goes with pair: an open tag () and an end tag () - Opening Tag - Closing Tag HTML Tags My first web page Hello everyone The basic TagsĪ tag is : Non-hierarchical keyword or term assigned to a piece of information Document Tags :- The tags that are required for every HTML page we create. The basic language used to write web pages. What is HTML HTML = H yper T ext M arkup L anguage A markup language designed for the creation of web pages and other information viewable in a browser. A web page, broken down Web Browser Content/Data Client/Server Logic Styling Rules WebsiteĪ web page, broken down Web Browser IE/FF/Opera/Chrome HTML PHP/ASP/ JavaScript CSS Website
Tumblr media
0 notes
Text
Differences between HTML and CSS
Web authoring is the process of using HTML, CSS, JavaScript, and various derived technologies, frameworks, and creating front-end interfaces to present to users. After class this week, we started to learn a new module - CSS. When I hear the word CSS, the first impression is hard. The research concluded that:
Tumblr media
HTML is a static web page, the document itself has only the page structure and can display the page content. The hallmark of HTML is that it is one of the easiest languages ​​to design and code websites, and the language is not case-sensitive. Example: Both and are acceptable, HTML is not specific to any operating system like Android or iOS in order for the language to be usable on any platform; instead, HTML runs on almost all operating systems.
Tumblr media
(https://medium.com/@ankurdhamija83/understanding-the-concept-of-css-web-development-basics-bc7e864b864f)
CSS is a cascading style sheet. By setting the corresponding style attributes, you can modify the display, position and other styles of each element in the HTML document; such as modifying the colour, font, font size, width, height, position, background, etc. CSS is essential to website design because it helps separate design from content. This helps improve readability, programming flexibility, and accessibility.
Important!
When we finish editing the HTML file, we need to link the CSS file externally to help the HTML do other work. At this time, we must remember to add the <link> element to the HTML: <link rel="stylesheet" href="style.css">, which links to a file called "style.css" in the same folder as the HTML file. The <link> tag is placed inside the <head> element.
1 note · View note
slutforsilverfoxes · 2 years
Text
Bête Noire (Part II)
Part I
Credit to https://ncis-world.livejournal.com/26564.html for portions of the script!
“Sir, when Hamas leaders start blowing themselves up, I'll consider it.” Gibbs concluded his meeting with the director gruffly, bounding down the stairs and toward his desk, mind playing around with theories about the terrorist downstairs in the autopsy freezer. He plucked your note off his computer screen, smile blooming across his face just as you had intended. Taking a seat, he popped the lid of his coffee off and gratefully took a sip, feeling the caffeine working to rejuvenate his body.
Whistling to get Tony’s attention, Gibbs asked, “Is Y/N still here?”
“She went to drop something off to Ducky but hasn’t come back up, Boss. I guess she went straight back to work from there. What does ‘Dub’ stand for?”
“Stands for ‘Get your ass back to work’, DiNozzo,” Gibbs growled in response, frowning down at his watch. Your break shouldn’t have ended yet, so why weren’t you back upstairs with him? He loved stealing these little moments in the middle of the day, enjoying the way you spoke so passionately about your cases and patients. You always told him that he was a hero, but he thought you were the real hero, the one out there performing difficult surgeries and saving animals’ lives and keeping families whole.
Gibbs was pulled out of his thoughts by a black blur anxiously pacing back and forth on the bridge, so he headed upstairs to investigate. “Abby?”
“Yes?”
“What are you doing?”
She sighed heavily, looking down at the floor as she mumbled, “I was having an internal debate.”
“Hm. Who’s winning?” Gibbs couldn’t help but grin, loving her unique quirkiness and how it often reminded him of you.
“I’m not sure,” she shrugged. “Oh, hell, the phobic side.”
“Still can’t enter Autopsy?” he asked softly, sensitive to her fear after you had ordered him to never pressure her into taking the elevator down to that floor.
“No.”
Deciding it was better to move on from that topic for now, he changed the subject. “Did you find any tag traces of explosives on the terrorist's clothes?”
“Ducky took everything back before I had a chance to test it,” she explained.
“What?” Gibbs barked, exasperated. There was a potential terrorist cell on US soil and they were wasting precious time.
“Don't look at me,” Abby responded, throwing her hands up. “He wouldn't say why. He just wanted everything back, including the blood.”
Gibbs narrowed his eyes, curious. “Including the blood?”
“Yeah, it’s a bit weird,” she conceded. “There's no way to do a blood test in Autopsy.”
“Gerald pick it up?”
Abby shook her head. “Gerald called in sick today. Ducky just wanted me down there stat.”
“Stat?” Gibbs’ heart rate started to pick up, and he motioned for Abby to follow as he went back downstairs to the main bullpen.
“Yeah,” she started, almost running to keep up with his long strides, “and I wouldn't go, so Y/N took it down.”
His heart dropped, and the pounding of blood in his ears drowned out the regular humdrum of the bullpen. “Tony,” he snapped, “get Autopsy on the plasma.”
Tony sat up with a start, fumbling for the TV remote. “Huh?”
“Autopsy. TV. Now!” Gibbs barked. “Why would Ducky say stat?”
“Because he's a doctor, and because stat means fast, and...” Abby trailed off as she put the pieces together, Gibbs’ voice joining her to conclude, “…medical emergency.”
“But what is a medical emergency in autopsy?” he asked aloud to no one in particular.
“All I’m getting is snow,” Tony grimaced, and the team leader’s heart sank again.
___
The assailant collected the box from its spot on the floor where you had dropped it when the bullet entered your arm. Pressing his gun into the small of your back, he guided you inside the autopsy suite where he promptly patted you down before instructing you to sit on one of the tables. You chewed on the inside of your cheek, willing yourself to stay quiet and not give this bastard any information to use against you or your husband’s team. Gibbs would soon put the pieces together and fix this mess. All you needed was to buy him time.
___
“Punch up autopsy receiving and stairwell cameras, then the building floor plans.”
“On it, Boss,” Tony nodded, now all business.
Gibbs took out his cell and angrily pressed several buttons before lifting the device to his ear. “Gibbs for Director. Abby-” he turned to his right to speak directly to her. “Ducky sound funny?”
“Kinda tense,” she recalled, “like when a test result isn't what he expected.”
Nodding grimly, he returned to his phone call. “Director. We may have intruders in autopsy. Possible hostage situation.”
“Ah, we got an ambulance outside of autopsy receiving, Boss,” Tony piped up, pointing to one of the camera views.
Nodding in acknowledgment, Gibbs held his index finger up to indicate for Tony to hold on that information. “Yes, sir. I think we should alert HRT and open a command center in MTAC. Aye, sir.”
Hanging up and turning to Tony, he requested to see the floor plan again, then ordered the younger agent to call the hospital where you worked and see if you had returned. Your husband called your phone, leaving a voicemail imploring you to please call back.
Realizing that staring at the phone and willing it to ring was a fruitless endeavor, Gibbs turned his attention to his plan, mapping out where he wanted to position agents: two in receiving, two in the elevator. The team coordinated their walkie-talkies to the same channel before Gibbs returned to the floor plans on the screen and picked up the remote from the table.
“DiNozzo?” Gibbs looked to his subordinate, desperate for Tony to hang up the phone and report that yes, you were fine, your break was over, and you were simply back to work so you couldn’t check your cell.
Tony slowly shook his head, mouth pulled into a tight line, and Gibbs felt his heart drop into his stomach for the third time that day. “Get Ducky on the phone,” he instructed Kate.
It took several rings, but Ducky’s voice finally floated through the speakerphone in greeting. They exchanged pleasantries under the guise of a normal work day before Gibbs got to the heart of the call. “Why’d you need all the evidence back, Duck?” he asked, looking skeptically at the other members of his team crowded around the phone.
“Well, Jethro, seeing as it necessitates shutting the entirety of the autopsy suite off to the rest of the building, I wanted to be doubly sure we’re dealing with a true infectious case. I'll call back with the results soon,” he said hurriedly, followed by the distinct click of the receiver.
“Son of a bitch!” Gibbs roared, readying his fist to punch a hole in the nearest wall but pulling back at the last second, thinking it best not to destroy government property before HRT came in.
“Gibbs?” Kate asked softly, unsure of what exactly had just transpired and alarmed by his outburst. “What’s going on?” She and Tony had missed the nuanced tone of Ducky emphasizing the first syllable of “doubly.”
“That bastard has my wife, too.”
Gibbs took a deep breath to center himself. You were in danger, and he needed to keep a clear head to get you back safe in his arms, where you belonged, where he could protect you from the evils of the world. “Abs, how do I rotate this thing?” he asked, inclining his head toward the floor plans.
“Just tell me what you need,” she responded, taking the remote from his hand and giving him a reassuring squeeze.
“Your lab and autopsy,” he instructed. “All entrances and exits. Give me 360.” She began rotating the plans and he got closer to the screen, squinting at it. “Keep going, keep going, keep going, go, go, go - stop, right there. What's this right here?” He pointed to a structure along the wall of her lab.
Abby supplied, “My gas chromatograph.”
“Can it be moved?”
“Yeah,” she nodded. She would heave it aside herself if it meant getting some information, guilt eating away at her for sending you down there.
“Do it,” he ordered, snapping her out of her guilt trip. “Then I need a drill and a flexible video probe.”
___
“Who are you?” the man holding you hostage demanded yet again. You stared him down, defiant, refusing to dignify him with a response. “A Special Agent?” he questioned, tapping the muzzle of the gun against your cheek. You flinched inadvertently at the cold metal and the power it held, making him grin.
“Did you shoot Qasam?” He sneered in your face. “Did you put that double tap in his heart?” Your heart skipped a beat. You only knew one man with the skill and precision to shoot someone in the heart-twice. Seeing a flicker of recognition flit across your features, he pressed the gun against your thigh.
Then he pulled the trigger.
“Fuck!” you cried out, clutching your leg and willing yourself to not pass out from the pain.
“She didn’t shoot him!” Ducky screamed, jumping to your aid. He whispered soothing words to you as he put pressure on the wound, and you squeezed your eyes shut, a few tears leaking past the tight barrier of your lids.
“Who did?” the man asked coldly, nonchalantly, as if he himself hadn’t just shot a human twice in the span of ten minutes.
Voice dripping with hatred, Ducky reluctantly supplied, “Special Agent Gibbs.”
___
“We’ve got audio and visual!” Kate announced, turning up the volume on the plasma screen.
“That name rings a bell, Dr. Mallard,” the terrorist on screen mused, pacing in front of you. “But it still doesn’t tell me who you are, Miss…?”
“It’s Doctor, actually,” you corrected through gritted teeth, unwilling and frankly unable to provide more information in your current state. You found yourself in awe, yet again, of how your husband dealt with similar wounds so casually on the job. The mere thought of him brought a sense of calmness over you, and you resolved that you would get out of this alive if only to see that gorgeous smile and kiss him one last time.
“Doctor…?”
Resisting the urge to roll your eyes at his insistence to know your name, you answered simply, “Gibbs.” Jethro had wanted you to keep your maiden name when you got married since it was written on your doctorate, but you wouldn’t listen. It was your simple way of proving to him that he would not be a four-time divorcée.
The young man’s eyes lit up, and he descended upon you with a wolfish grin. “You’re Gibbs’ daughter?”
“I’m his wife, you ageist fuck,” you snapped back, eyes flashing with defiance.
Despite the severity of the situation and the way his heart clenched at the sight of your wounds, Gibbs couldn’t help the grin that spread across his face as he watched your grainy visage pull into a snarl. “That’s my girl,” he mumbled to himself, proud of you for not succumbing to fear in the face of danger.
“Tony, zoom in,” Gibbs requested, the camera getting a clear shot of the assailant’s face seconds before a gunshot rang out and the screen went blank again. “Guess he knows we're onto him.”
Part III
147 notes · View notes
ao3skin · 3 years
Text
How to hide tags (and be warned of works that contains those tags)
So, Ao3 has made a lot of changes lately that allowed us to hide specific fics and works by specific authors.
There still no way to hide works with specific tags (that doesn't mean there won't be in the future, but I have no idea if that is in the plans or not) unless you use the filters in your search. But while you can bookmark a search with all the filters, there's no way to carry these filters in separate searches and you have to write it every time.
Unfortunately CSS doesn't have a way either to hide those fics either, at most it can hide the single tag, which we don't want to do because at that point everything becomes so much worse, as you don't even have the tag as a warning.
I have an option:
Tumblr media
It hides the tags so I do not have to read them and it warns me that this is definitely a work I don't want to read.
Because those black black boxes are very visible in a wall of tags.
(you can use white if you are using darkmode btw)
It can:
be used in conjunction with all the other hiding skins you have, you can either copy/paste it in the bottom or make a new skin and add the other one as a parent.
be used for dark mode, you just change the 'black' in white in the text
You can also do something midway, if you don't need to obliterate the tag, just highligh it.
There's no way to see what it is once you click on it though! (you either copy and paste the tag somewhere or read the address bar)
you can also do a mix of those, blacken out some tags and highligh others
Tumblr media
The code is very simple and straightforward:
a.tag[href*="word"] {
background-color: black;
color: black;
}
You change the "word" in the first line in whatever tag you want to hide, but be careful of these things:
It is case sensitive. so "skin" won't catch "Skin", if there's something that you aggressively don't want to see you'll need to copy/paste the code for all the instances.
it will search even part of the word. so "tick" will catch "ticket" "ticking" "tickling" "ticks" (if you see that there's a specific word that keeps getting stuck in the filter you can add the same code AFTER, and change the colors in something that's readable, so like, the background-color: white)
you can hide as many tags as you want, just copy/paste the code again and again and change the "word" to what you want to hide next
It refers to the url, not the name of the tag, so this part here in the address bar:
Tumblr media
which means if you need to use more than one word you can't use the space but you'll need to use %20 instead.
example:
a.tag[href*="two%20words"] {
background-color: black;
color: black;
}
To change the colors
the two lines of code:
this one changes the background: "background-color: black;"
while this other one changes the text: "color: black;"
You can change 'black' in whatever color you prefer using a hex color code (just google 'color picker') or one of the html names for colors (so, white, grey, red will all work fine). for example: "background-color: #e6a4ea;" will give the example in the image above, the pink highlighted one.
Always remember the semicolon at the end of the line!
As I said, you can use both.
Obviously not on the same tags but you can use the black one on tags, and the highlight on others. for example:
a.tag[href*="angst"] {
background-color: black;
color: black;
}
a.tag[href*="fluff"] {
background-color: #e6a4ea;
color: black;
}
So, you can use the black thing for really hard limits that you NEVER want to touch and the highlighted ones for tags you might want to have a warning in advance most of the time.
That's it. I know it's finnicky, but it can be helpful to people.
2K notes · View notes
fismoll7secinv · 3 years
Text
Tips & tools
Some web security (don’t get ray-ban hacked or worse)
Secure apps
Art related
Tips on commissioning an artist
Reblog vs repost, FAQ why reposting is bad
What to do when your art got stolen
Sites with images safe to use for moodboards etc
Tumblr
Tumblr dashboards
How to tumblr for newcomers
Find untagged posts
Tumblr stats! How many notes total you have, the most popular posts etc.
Mass tag replacer 
Posts stuck in your queue or disappearing drafts?
Tumblr tone indictors
Fandom dictionary
More under the cut: Mass Post Editor, how to find all your tags, plus some more tricks
Mass tag replacer
You can find all your posts tagged with specific tag or tags, replace those tags or delete them, see the count of posts with them. 
Tip: click on the filter button for additional options like including queue/drafts, case sensitive search or deleting tags:
Tumblr media
Click on “help” for more tricks, e.g. appending or ordering tags. You can also easily fix a typo with this (find tag ‘atr’, replace with ‘art’).
Warn: it breaks sometimes lmao (at least it did when I tried to change tags on over 4k posts at once. Still managed to do it with a few tries)
Tumblr media
Bonus: look at this beautiful loading animation from this site
Tumblr media
Mass Post Editor
For batch deleting posts and editing tags:
Tumblr media Tumblr media
You can also see all the tags which you used in your blog here. Details below.
 Find your tags
1) Most common tags - go to your blog’s archive (FYI you can see someone else’s tag counts in their blog’s archive as well)
Tumblr media
2) All tags - see prompts while adding tags in Mass Post Editor:
Tumblr media
3) All tags - extract from html in Mass Post Editor:
Explanation: for you to be able to see the prompts in the previous step they have to be fetched from the server. Tumblr dot com just injects all of your tags to the html sent to your browser, then searches this tag list while you’re typing in the box above. You can extract them from there.
Short version: search for ‘tags_to_add’ in html
Longer version:
Hit F12 (or whatever will open devtools in your browser)
Open Elements tab
Search for ‘tags_to_add’ (ctrl+f)
Right-click to copy the element 
Tumblr media
Paste to your preferred text editor, delete noise and you’re done 🎉
Bonus: turn this messy list into an excel sheet with filters and sorting
Goal:
Tumblr media
Let’s get to it.
1) Paste the html element with tags to a preferred editor (I’ll use the simplest Windows editor for your convenience but anything with the option to replace characters works)
2) Delete everything except the list of tags (beginning and end) 
Tumblr media
3) Replace the delimiter (the thingy that separates the tags) for something that is not present inside the tags, I’ll choose #. Hit ctrl+h or choose Edit->Replace in the menu:
Tumblr media
4) Convert unicode hexes to ascii e.g. \x3e to > (to have :> instead of :\x3e). I used this online converter
Tumblr media
5) Copy the converted text and paste to a cell in excel. Then go by this:
Tumblr media
Data->Text to columns 
Delimited -> Next
Other: # -> Finish
Select the whole row and copy
Paste options: Transpose to another cell, e.g. A2
Delete the first row and write ‘Tags’ as the header in A1
Data->Filter for the column with tags 
For the record - I’m not an excel expert so this may be a roundabout way.
The end 😬 Now you can sort, filter or whatever you like.
188 notes · View notes