-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment2.html
114 lines (107 loc) · 4.57 KB
/
assignment2.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
<!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>assignment2</title>
<link rel="stylesheet" href="assignment2.css">
</head>
<body>
<!-- ---------------Navbar----------------- -->
<div class="logo">
<img src="react.png" alt="react">
</div>
<nav>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Approach</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Services</a></li>
</ul>
</nav>
<!----------------- Center----------- -->
<div class="center-react">
<h1 style="font-size: 50px; font-family: Arial; color: #61dafb;">React</h1>
<p style="font-size: 25px; color: white; font-family: Lucida Sans;">A JavaScript library for building user
interfaces</p>
<button
style="font-size: 20px; padding: 15px; margin-top: 10px; border-radius: 5px; background-color:#61dafb;">Get
Started ></button>
</div>
<div class="center-content">
<div class="left-div">
<ul>
<li>Easy to learn</li>
<li>Virtual DOM Concept</li>
<li>Much Faster</li>
<li>Responsive</li>
<li>Component Based</li>
<li>Light Weight</li>
</ul>
</div>
<div class="right-div">
<div class="card">
<h1 style="margin-top: 80px; margin-left: 50px;">Declarative</h1>
<p style="margin-left: 50px; padding-right: 50px; font-size: 20px; ">React makes it painless to create interactive UIs. Design simple views for each state in your
application, and React will efficiently update and render just the right components when your data
changes.
Declarative views make your code more predictable and easier to debug.</p>
</div>
<div class="card">
<h1 style="margin-top: 80px; margin-left: 50px;">Component-Based</h1>
<p style="margin-left: 50px; padding-right: 50px; font-size: 20px; ">Build encapsulated components that manage their own state, then compose them to make complex UIs.
Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM.</p>
</div>
<div class="card">
<h1 style="margin-top: 80px; margin-left: 50px;">Learn Once, Write Anywhere</h1>
<p style="margin-left: 50px; padding-right: 50px; font-size: 20px; ">We don’t make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code.
React can also render on the server using Node and power mobile apps using React Native.</p>
</div>
</div>
</div>
<!-- ------------------------------Footer -------------------------- -->
<div class="footer">
<div class="f-list">
<h5 style="margin-left: 189px; margin-top: 50px; color: gray;">DOCS</h5>
<ul>
<li>Installation</li>
<li>Main Concepts</li>
<li>Advance Guides</li>
<li>API Reference</li>
<li>Hooks</li>
<li>Testing</li>
<li>Contributing</li>
<li>FAQ</li>
</ul>
</div>
<div class="f-list">
<h5 style="margin-left: 189px; margin-top: 50px; color: gray;">CHANNELS</h5>
<ul>
<li>GitHub</li>
<li>Stack Overflow</li>
<li>Discussion Forums</li>
<li>Reactiflux Chat</li>
<li>Dev Community</li>
<li>Facebook</li>
<li>Twitter</li>
</ul>
</div>
<div class="f-list">
<h5 style="margin-left: 189px; margin-top: 50px; color: gray;">MORE</h5>
<ul>
<li>Tutorial</li>
<li>Blog</li>
<li>Acknowledgements</li>
<li>React Native</li>
<li>Privacy</li>
<li>Terms</li>
</ul>
</div>
<div style="background-color: #20232a; color: white; text-align: center; padding: 20px;">
All Rights Reserved By @Dhaval Chavda
</div>
</div>
</body>
</html>