-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 2.5 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="../images/favicon.ico" />
<link rel="stylesheet" href="./css/mainstyle.css" />
<title>Java Script</title>
</head>
<body>
<header class="site-header">
<nav>
<div class="logo">
<h1>CNC-8 JS CSS HTML</h1>
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>Projects</li>
<li>About Us</li>
<li>Contact Us</li>
<li>Find Us </li>
</ul>
</div>
</nav>
<section>
<div class="leftside">
<!-- <a href="./Proj_one/signUp.html">Sign Up Form with JS Validationds</a> -->
<a href="./P01/index.html"
><span>1</span> HTML Form - Client side form validation with HTML</a
>
<a href="./P02/index.html"
><span>2</span> Seat Selection at Movie Theater</a
>
<a href="./P03/index.html"><span>3</span> Video Player</a>
<a href="./P04/index.html"
><span>4</span> Calculating Exchange Rates</a
>
<a href="./P05/index.html"><span>5</span> DOM Arrays Methods</a>
<a href="./P06/index.html"
><span>6</span> Landing Page with Sliding Menu and Modal Window</a
>
<a href="./P07/index.html"><span>7</span> Classic Hangman Game</a>
<a href="./P08/index.html"><span>8</span> Random Food Selector</a>
<a href="./P09/index.html"><span>9</span> Expense Tracking</a>
<a href="./P10/index.html"><span>10</span> Music Player</a>
</div>
<div class="rightside">
<a href="./P11/index.html"><span>11</span> Infinite Scrolling App</a>
<a href="./P12/index.html"><span>12</span> Fast Typing Game</a>
<a href="./P13/index.html"><span>13</span> Memory Cards</a>
<a href="./P14/index.html"
><span>14</span> A text to speech app for non-verbal people</a
>
<a href="./P15/index.html"><span>15</span> Search for Lyrics</a>
<a href="./P16/index.html"
><span>16</span> Breathing Exercise for Relaxing</a
>
<a href="./P17/index.html"><span>17</span> Sortable List</a>
<a href="./P18/index.html"><span>18</span> Breakout</a>
<a href="./P19/index.html"><span>19</span> New Year Countdown</a>
<a href="./P20/index.html"><span>20</span> Final Project</a>
</div>
</section>
</header>
</body>
</html>