Skip to content

Commit

Permalink
Asrita UI Part-2
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyasrita-16 authored Dec 17, 2023
1 parent 7b7493d commit 8228c8c
Show file tree
Hide file tree
Showing 45 changed files with 3,254 additions and 0 deletions.
41 changes: 41 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About - W3Schools</title>
<link rel="stylesheet" href="../ui/css/about.css">
</head>
<body>
<header>
<h1>W3Schools</h1>
</header>
<nav>
<ul>
<li><a href="../ui/index.html">Home</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<h2>About</h2>
<p>W3Schools is a popular online learning platform that provides tutorials and resources for web development. We aim to help individuals of all skill levels, from beginners to experienced developers, to learn and improve their knowledge of various web technologies.</p>
<p>At W3Schools, you can find comprehensive tutorials on HTML, CSS, JavaScript, Python, and more. We cover a wide range of topics and provide practical examples to help you understand and apply the concepts effectively.</p>
<p>Our mission is to make learning web development accessible and enjoyable for everyone. We strive to provide high-quality educational content that is easy to understand, up-to-date, and relevant to the industry standards.</p>
<p>Whether you want to build your first website, enhance your existing skills, or stay updated with the latest web development trends, W3Schools is here to support your learning journey. Join our community of millions of learners worldwide and unlock your web development potential!</p>
</section>
<footer>
&copy; 2023 W3Schools. All rights reserved. | <a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a>
</footer>
<section style="background-color: black;"><br><br></section>
<footer style="background-color:black;text-align: center;color: pink;">
<p>&copy; Copyright-2023 </p>
<p>W3 Schools - Asrita NL</p>
<p>II Year Btech CSE(CYS)<p>
<p>Part of 20CYS202 - User Interface Design </p>
<p>Amrita Vishwa Vidyapeetham, Coimbatore</p>

</footer>
</body>
</html>
76 changes: 76 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/aqllearn.html

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/certificate.html

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact - W3 Resources</title>
<link rel="stylesheet" href="../ui/css/contact.css">

</head>
<body>
<header>
<h1 style="text-align: center;">Contact - W3 Resources</h1>
</header>
<nav>
<ul>
<li><a href="../ui/index.html">Home</a></li>
<li><a href="tutorial.html">Tutorials</a></li>
<li><a href="service.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<h2>Contact Us</h2>
<p>Welcome to the contact page of W3 Resources. If you have any questions, feedback, or inquiries, please feel free to reach out to us using the contact form below. We value your input and will get back to you as soon as possible.</p>
<form id="contactForm">
<label style="color: #ff4da6;" for="name">Your Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label style="color: #ff4da6;" for="email">Your Email:</label>
<input type="text" id="email" name="email" required><br><br>
<label style="color: #ff4da6;" for="message">Message:</label><br><br>
<textarea id="message" name="message" rows="5" required></textarea><br><br>
<button type="submit">Submit</button>
</form>
</section>
<footer>
&copy; 2023 W3 Resources. All rights reserved. | <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a>
</footer>

<script src="../ui/js/contact.js"></script>
</body>
</html>
49 changes: 49 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/csscertificate.html

Large diffs are not rendered by default.

85 changes: 85 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/csslearn.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/csstutorial.html

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/enrollcss.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/enrollhtml.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/enrolljavascript.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/enrollpython.html

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/enrollsql.html

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/exercise.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>W3Schools - Exercise Page</title>
<link rel="stylesheet" href="../ui/css/exercise.css">
<style>

</style>
</head>
<body>
<h1>W3Schools - Exercise Page</h1>

<div class="exercise-container">
<h2>Exercise 1</h2>
<p style="color: white;">Create a paragraph element with the text "Hello, World!"</p>
<pre><code>&lt;p&gt;Hello, World!&lt;/p&gt;</code></pre>
</div>

<div class="exercise-container">
<h2>Exercise 2</h2>
<p style="color: white;">Create an unordered list with three list items: Apple, Banana, and Cherry</p>
<pre><code>&lt;ul&gt;
&lt;li&gt;Apple&lt;/li&gt;
&lt;li&gt;Banana&lt;/li&gt;
&lt;li&gt;Cherry&lt;/li&gt;
&lt;/ul&gt;</code></pre>
</div>

<div class="exercise-container">
<h2>Exercise 3</h2>
<p style="color: white;">Create a link to the W3Schools website with the text "Visit W3Schools"</p>
<pre><code>&lt;a href="https://www.w3schools.com"&gt;Visit W3Schools&lt;/a&gt;</code></pre>
</div>
<section style="background-color: black;"><br><br></section>
<footer style="background-color:black;text-align: center;color: pink;">
<p>&copy; Copyright-2023 </p>
<p>W3 Schools - Asrita NL</p>
<p>II Year Btech CSE(CYS)<p>
<p>Part of 20CYS202 - User Interface Design </p>
<p>Amrita Vishwa Vidyapeetham, Coimbatore</p>

</footer>


</body>
</html>
47 changes: 47 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/forgot.html

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/htmlcertificate.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/htmltutorial.html

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/javascriptcertificate.html

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/javascriptlearn.html

Large diffs are not rendered by default.

108 changes: 108 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/javascriptreference.html

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/javascripttutorial.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/learnhtml.html

Large diffs are not rendered by default.

102 changes: 102 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/login.html

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/notknowwheretobegin.html

Large diffs are not rendered by default.

51 changes: 51 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/phytoncertificate.html

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/phytonlearn.html

Large diffs are not rendered by default.

107 changes: 107 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/phytonreference.html

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/privacy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Privacy Policy - W3Schools</title>
<link rel="stylesheet" href="../ui/css/privacy.css">
</head>
<body>
<h1>Privacy Policy</h1>

<p>At W3Schools, we are committed to protecting your privacy and ensuring the security of any personal information you provide to us.</p>

<h2>Information We Collect</h2>
<p>We may collect personal information such as your name, email address, and demographic information when you voluntarily submit it to us through our website.</p>

<h2>How We Use Your Information</h2>
<p>We use the information we collect to personalize your experience, improve our website, and communicate with you regarding our products and services.</p>

<h2>Information Security</h2>
<p>We have implemented appropriate security measures to protect your personal information from unauthorized access, alteration, or disclosure.</p>

<h2>Third-Party Websites</h2>
<p>Our website may contain links to third-party websites. We are not responsible for the privacy practices or the content of such websites.</p>

<h2>Changes to This Policy</h2>
<p>We may update our Privacy Policy from time to time. Any changes will be posted on this page.</p>

<p>If you have any questions or concerns about our Privacy Policy, please contact us.</p>
</body>
<section style="background-color: black;"><br><br></section>
<footer style="background-color:black;text-align: center;color: pink;">
<p>&copy; Copyright-2023 </p>
<p>W3 Schools - Asrita NL</p>
<p>II Year Btech CSE(CYS)<p>
<p>Part of 20CYS202 - User Interface Design </p>
<p>Amrita Vishwa Vidyapeetham, Coimbatore</p>

</footer>
</html>
57 changes: 57 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/python.html

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/pythontutorial.html

Large diffs are not rendered by default.

83 changes: 83 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quiz.html

Large diffs are not rendered by default.

92 changes: 92 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quizcss.html

Large diffs are not rendered by default.

93 changes: 93 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quizhtml.html

Large diffs are not rendered by default.

91 changes: 91 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quizjavascript.html

Large diffs are not rendered by default.

90 changes: 90 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quizpython.html

Large diffs are not rendered by default.

95 changes: 95 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/quizsql.html

Large diffs are not rendered by default.

106 changes: 106 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/referencecss.html

Large diffs are not rendered by default.

135 changes: 135 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/referencehtml.html

Large diffs are not rendered by default.

85 changes: 85 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/references.html

Large diffs are not rendered by default.

89 changes: 89 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/service.html

Large diffs are not rendered by default.

117 changes: 117 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/signup1.html

Large diffs are not rendered by default.

49 changes: 49 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/sqlcertificate.html

Large diffs are not rendered by default.

95 changes: 95 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/sqlreference.html

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/sqltutorial.html

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/terms.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Terms and Conditions - W3Schools</title>
<link rel="stylesheet" href="../ui/css/terms.css">

</head>
<body>
<h1>Terms and Conditions</h1>

<h2>1. Acceptance of Terms</h2>
<p>By using the W3Schools website, you agree to comply with and be bound by these terms and conditions.</p>

<h2>2. Intellectual Property</h2>
<p>All content on the W3Schools website, including text, graphics, logos, and images, is the property of W3Schools and protected by intellectual property laws.</p>

<h2>3. Use of Materials</h2>
<p>You may use the materials on the W3Schools website for personal, non-commercial purposes only.</p>

<h2>4. User Conduct</h2>
<p>When using the W3Schools website, you agree to abide by all applicable laws and not to engage in any conduct that may be harmful or offensive.</p>

<h2>5. Disclaimer of Warranty</h2>
<p>The information on the W3Schools website is provided "as is" without any warranties, express or implied.</p>

<h2>6. Limitation of Liability</h2>
<p>W3Schools shall not be liable for any direct, indirect, incidental, or consequential damages arising out of the use or inability to use the website.</p>

<h2>7. Modifications</h2>
<p>W3Schools reserves the right to modify or discontinue the website or any part thereof without notice.</p>

<p>If you have any questions or concerns about our Terms and Conditions, please contact us.</p>
<section style="background-color: black;"><br><br></section>
<footer style="background-color:black;text-align: center;color: pink;">
<p>&copy; Copyright-2023 </p>
<p>W3 Schools - Asrita NL</p>
<p>II Year Btech CSE(CYS)<p>
<p>Part of 20CYS202 - User Interface Design </p>
<p>Amrita Vishwa Vidyapeetham, Coimbatore</p>

</footer>
</body>
</html>
84 changes: 84 additions & 0 deletions Assignments/CB.EN.U4CYS22009/ui/html/tutorial.html

Large diffs are not rendered by default.

0 comments on commit 8228c8c

Please sign in to comment.