PDA

View Full Version : HTML site



alex101
10-17-2019, 08:07 AM
Can we create an entire site from just html and css without making it vulnerable to XXS

khatrivijaysingh
03-26-2020, 10:34 AM
Yes, You can create an entire site with HTML and CSS only but I would suggest you to create with HTML & CSS after that create with PHP, Python or other programming lanaguges

vijaykhatri96
05-11-2020, 09:45 AM
Can we create an entire site from just html and css without making it vulnerable to XXS

Yes you can create but that will not be a dynamic site that would be static site.

singhjyoti0399
06-24-2020, 06:33 AM
Yes you can create.

Leasedlayer
08-13-2020, 10:42 AM
Yes, it is possible to create for basic professional looking small business site with just HTML and CSS. You wouldn't need more until you needed to add more functionality.

mcdermottraegan
09-27-2020, 02:05 PM
As I know, there are many different variations of HTML code.

kevin21
10-15-2020, 05:39 AM
Yes you can, but it will be limited to design only. You can't implement functions, responsiveness, etc because you need javascript.

Gimli
01-29-2021, 05:25 AM
Yes, you can create a website in just CSS and HTML but if its a business site i assume you may want a contact form that going to require you to use at least some sort of other web programming language - XXS can only really work if you have a database so I would discard javascript or PHP if you aren't using a database which a static HTML site wouldn't really have. Yes, your site won't be dynamic, and that a big drawback and headache especially if you decide to grow the site, your functionality will be limited, but if its a just for show business website then that's absolutely fine. Here is a great article on it: https://sucuri.net/guides/what-is-cross-site-scripting/

jhonalbert
12-14-2021, 07:27 AM
Yes, you can create whole website by using only HTML and CSS

StellaWatling
05-24-2022, 11:23 AM
Yes you can create a static blog with HTML and CSS. If you will use JavaScript then it provides you security with dynamic blogs college-paper.org reviews (https://www.toppaperwritingservice.com/review-college-paper-org/) there you can find some relevant courses so must visit for more details that will help you out.

AshtonFalstein
06-14-2022, 09:41 AM
Presently she needed to manage moral issues, yet as of now she had decided, and that is the point at which the undertaking began. It was generally by and large a promising intensity for the colder time of year cool, on the off chance that https://japanesedrams.com/ not a new breeze blowing tossed the window shades.

Taimoor
09-06-2022, 10:54 AM
I advise you to start with HTML & CSS first before moving on to programming languages like PHP or Python.

Taimoor
09-06-2022, 10:56 AM
Yes, you can design a whole website using only HTML and CSS. Before moving to some other languages have a strong grip on these

malika
06-08-2023, 05:09 AM
zain thanks for this blog

crunchy
01-03-2024, 05:02 PM
Yes, you can create a website using just HTML and CSS without making it vulnerable to Cross-Site Scripting (XSS) attacks. XSS vulnerabilities generally arise when a web application uses input from a user within the output it generates without validating or encoding it. Since HTML and CSS are used for structuring and styling web pages and do not involve processing user input or data dynamically like JavaScript, PHP, or other scripting languages, a site consisting solely of HTML and CSS is typically not susceptible to XSS attacks.

Here are some key points to consider:

Static Nature: A website built only with HTML and CSS is static. This means it does not have the capability to process user inputs or store data, which is where most XSS vulnerabilities arise.

No Script Execution: XSS attacks often involve injecting malicious scripts into web pages. If your website does not include any JavaScript or server-side scripting, the risk of script injection is inherently lower.

Caution with External Resources: If you are linking external CSS or any third-party libraries, ensure they come from reputable sources. While your HTML and CSS code may not introduce vulnerabilities, external resources could potentially be compromised.

Secure Hosting: Even though your HTML/CSS site is not prone to XSS, you should still choose a secure and reputable hosting service to protect your site from other types of attacks like Distributed Denial of Service (DDoS) attacks.

Regular Updates and Best Practices: Keep any software you use (like your FTP client, web server software, or content management system) up to date with security patches. Follow best practices for security, even if your site is static.

In summary, a website built exclusively with HTML and CSS is generally safe from XSS attacks due to its static nature. However, always follow general web security best practices to protect against other types of vulnerabilities or threats.