-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.html
61 lines (53 loc) · 3.38 KB
/
web.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Web Projects</title>
<link href="http://fonts.googleapis.com/css?family=Oxygen:400,700,300" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
<div id="menu-wrapper">
<div id="menu" class="container">
<ul>
<!-- NAVIGATION MENU. THERE SHOULD BE ONE LIST ITEM FOR EACH BUTTON IN YOUR NAVIGATION BAR. -->
<!-- REPLACE THE # IN THE LINK WITH THE FILE NAME OF THE APPROPRIATE PAGE. -->
<li ><a href="index.html">About</a></li>
<li><a href="image.html">Image Editing</a></li>
<li class="current_page_item"><a href="web.html">Web Design</a></li>
<li><a href="video.html">Video Production</a></li>
<li><a href="animation.html">Animation</a></li>
<li><a href="screencast.html">Screencast</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</div>
</div>
<div id="page" class="container">
<div class="centered-content">
<h2>HTML and CSS Quizzes</h2>
<p>Test your knowledge with these quizzes designed as part of Project 2.</p>
<p>Choose a quiz to get started:</p>
<div class="quiz-buttons">
<div class="quiz">
<h3>POP QUIZ</h3>
<p>I developed a Pop quiz about health and nutrition, Starting with the JavaScript file, I modified the template given by changing and adding additional questions. On the HTML front, I selected a background image that aptly reflects the quiz's theme. I added a div take to make the quiz look good, and I have updated the table background background to be rendered in white to ensure clarity and ease of reading. I have updated the font and i have added colours to the buttons
I chose GitHub to deploy this webpage for it's simplicity. After uploading the necessary files in github, I enabled the page hosting option, leading to a smooth and successful deployment of the website.</p>
<a href="https://rithikyennam.github.io/Pop-Quiz/" class="button">Pop Quiz</a>
</div>
<div class="quiz">
<h3>DRAG AND DROP QUIZ</h3>
<p>I made changes to the given drag-and-drop quiz to make it look and feel better. To start off, I updated the the page title and contents. On the CSS, I enhanced the overall appearance by changing the font, background color, and styling of various elements. I also made the footer more visible, adjusted the quiz container's width, and centered it on the page. Furthermore, I improved the appearance of draggable items by changing their style, border color, padding, and margins. I also made small boxes in the right column more visually appealing and aligned them properly. Lastly, I modified the drag container and drag drop indicator for a more modern appearance, changing their background color and border style.
To host it, I chose Github. I uploaded the files to github and then I enabled static hosting on it, which lead to a seamless deployment.
</p>
<a href="https://rithikyennam.github.io/Drag-Drop/" class="button">Drag and Drop quiz</a>
</div>
</div>
</div>
</div>
<!-- Footer from the existing HTML -->
</div>
</body>
</html>