-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (132 loc) · 5.89 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<title>Web Engineering Labs</title>
</head>
<body>
<!-- Header Starts Here -->
<header>
<div>
<i class="fa-solid fa-code"></i>
</div>
<div>
<h1> | Web Engineering Labs | </h1>
</div>
<div>
<p style="font-size: 20px;"> 👉 By : </p>
<a href="https://www.linkedin.com/in/shayan-jamil-4b99051ba/" target="_blank">Shayan Jamil</a>
</div>
</header>
<!-- Header Ends Here -->
<h4 class="warning">Not responsive for mobile devices! Please open it in desktop devices</h4>
<!-- Section Starts Here -->
<section>
<div class="container">
<a class="card" href="./Lab-1/lab_1.html" target="_blank">
<h1>Lab # 1 </h1>
<p class="small">Learn about the fundamental Web page structure using HTML tags and heading tags (H1.. H6). Learn how to add an image and link to a website. Learn how to implement lists and a nested lists.</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-2/lab_2.html" target="_blank">
<h1>Lab # 2 </h1>
<p class="small">Learn how to use table tags and various attributes. Learn how to use the table tag, rowspan and colspan in tables.</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-3/Lab_3.html" target="_blank">
<h1>Lab # 3 </h1>
<p class="small">Learn how to design a form in HTML. Learn how to use form tag. Learn how to use button, input, text area, select tags.</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-4/Lab_4.html" target="_blank">
<h1>Lab # 4 </h1>
<p class="small">Learn how to apply different properties of css to give a web page a professional look. Learn how to apply border, margin, padding , float, font-family and font-weight properties.</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-5/Lab_5.html" target="_blank">
<h1>Lab # 5 </h1>
<p class="small">Learn how to make a simple calculator and temperature converter using html, css and js</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-6/Lab_6.html" target="_blank">
<h1>Lab # 6 </h1>
<p class="small">Learn how to make a website using DOM. Learn how to encrypt and decrypt a message using JavaScript. Learn how to find vowel and consonants and generate random numbers using JavaScript</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-7//Lab_7.html" target="_blank">
<h1>Lab # 7 </h1>
<p class="small">Learn how to use JavaScript classes and arrow functions.</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-8/Lab_8.html" target="_blank">
<h1>Lab # 8 </h1>
<p class="small">Learn about Map Functions, Objects and Collection, Inheritance in JavaScript
</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="./Lab-9/Lab_9.html" target="_blank">
<h1>Lab # 9 </h1>
<p class="small">Learn how to implement JavaScript modules</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
<a class="card" href="https://github.com/ShayanJamil519/MERN_Ecommerce_Project" target="_blank">
<h1>Lab # 10 </h1>
<p class="small">Learn how to make an Ecommerce store using React.js components</p>
<div class="go-corner">
<div class="go-arrow">
→
</div>
</div>
</a>
</div>
<div class="footer">
<p>Follow Me on :
<a href="https://github.com/ShayanJamil519" target="_blank" style="color: #ffa800;">Github</a>
<br> Click here to get the : <a href="https://github.com/ShayanJamil519/Web-Enginnering-Labs" style="color: #ffa800;" target=" _blank ">Source Code</a>
</p>
</div>
</section>
<!-- Section Ends Here -->
</body>
</html>