-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReact.html
61 lines (49 loc) · 1.59 KB
/
React.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>
<head>
<title>Reso</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body onload="updateClock(); setInterval('updateClock()', 1000 )">
<!-- header -->
<header>
<div>
<h1>Reso</h1>
<h2>All Resources for a Developer!</h2>
</div>
</header>
<!-- nav -->
<nav class="link" class="header" id="myHeader">
<a class="a" href="index.html">HOME</a>
<a class="a" href="links.html">LINKS</a>
<a class="a" href="css.html">CSS</a>
<a class="a" href="html.html">HOLY GRAIL</a>
<a class="a currentPage" href="React.html">REACT</a>
<span id="clock"> </span>
</nav>
<!-- content -->
<div id ='content'>
<div class='box'>
<b class='title'><u>Script to use in HTML :</u></b>
<h4>
<p class="selector">React:</p>
<p class="property inline"><xmp class="value inline"><script src="https://unpkg.com/[email protected]/umd/react.development.js"></script></xmp></p>
<p class="selector">React-Dom:</p>
<p class="property inline"><xmp class="value inline"><script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script></xmp></p>
</h4>
</div>
<div class='box'>
<b class='title'><u>React-Reso :</u></b>
<h4>
<a href="https://arun-me.github.io/react-reso/">https://arun-me.github.io/react-reso/</a>
</h4>
</div>
</div>
<!-- footer -->
<footer>
<p class="footerText">want to contribute your code to this website ==>
<a href="https://github.com/arun-me/Reso">click here</a></p>
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>