-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (66 loc) · 3.09 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
<!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">
<title>TASK PAGE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="home-content">
<img src="https://letsgrowmore.in/wp-content/uploads/2021/05/Artboard-1-1-removebg-preview-e1645900071758.jpg" alt="">
<h1 class="hc-head">TASK LISTS</h1>
<div class="p-con">
<p>This website contains all the successfully completed 4 tasks as a Web Developer Intern at <b>LetsGrowMore.</b>
</p>
</div>
<div class="home-bio">
<div class="trans">
<div class="trans-head">
<h3>TASK-1</h3>
</div>
<div class="trans-con">
<p><h2 style="color: #0f2784;">TO-DO LIST WEBAPP</h2><br><br>A basic To-Do WebApp that enables a user to add daily tasks. It shows Completed and Incomplete Tasks.</p>
</div>
<div class="box-text">
<a href="Task-1/index.html" style="color:#fff;"><button id="btn">View Task</button></a>
</div>
</div>
<div class="trans">
<div class="trans-head">
<h3>TASK-2</h3>
</div>
<div class="trans-con">
<p><h2 style="color: rgb(154, 43, 111);">CREATE REACT APP</h2><br><br>A web application using create-react-app which makes an API call to fetch data from "https://reqres.in/api/users?page=1".</p>
</div>
<div class="box-text">
<a href="Task-2/index.html" style="color:#fff;"><button id="btn">View Task</button></a>
</div>
</div>
<div class="trans">
<div class="trans-head">
<h3>TASK-3</h3>
</div>
<div class="trans-con">
<p><h2 style="color: #0d7e6b;">ENROLLMENT FORM</h2><br><br>An enrollment form whose data is being displayed on same page using HTML, CSS & JS.</p>
</div>
<div class="box-text">
<a href="Task-3/index.html" style="color:#fff;"><button id="btn">View Task</button></a>
</div>
</div>
<div class="trans">
<div class="trans-head">
<h3>TASK-4</h3>
</div>
<div class="trans-con">
<p><h2 style="color: rgb(154, 43, 111);">CALCULATOR</h2><br><br>It takes a little skill to create a calculator with basic mathematical functionalities using CSS, HTML, and JavaScript.</p>
</div>
<div class="box-text">
<a href="Task-4/index.html" style="color:#fff;"><button id="btn">View Task</button></a>
</div>
</div>
</div>
</section>
</body>
</html>