-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdev.html
114 lines (61 loc) · 3.19 KB
/
webdev.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>
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoon level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/tooltipglossary.js"></script>
<script src="js/lightswitch.js"></script>
<link id="generalcss" href="css/light.css" rel="stylesheet" type="text/css" />
<title>Ripa Codrin-Andrei</title>
<link rel="icon" href="https://i.imgur.com/aYr9UGD.jpg">
</head>
<body>
<nav id="mynavbar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle navbar-toggler" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="#">Seedless Bloom</a> -->
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="about.html">About</a></li>
<li><a href="python.html">Python</a></li>
<li class="active"><a href="#">Web Dev</a></li>
<li><a href="c-c++.html">C/C++</a></li>
<li><a href="java.html">Java</a></li>
<li><a href="csharp.html">C#</a></li>
<li><a href="other.html">Other</a></li>
<!-- <li><a href="#" onclick="lightswitch()">Invert Colors</a></li> -->
</ul>
</div>
</div>
</nav>
<div class="row">
<div class="col-lg-offset-3 col-lg-6 col-md-offset-2 col-md-8 col-sm-offset-1 col-sm-10 col-xs-offset-1 col-xs-10">
<br>
<br>
<br>
<br>
<br>
<h2 class="text-left">Full Stack</h2>
<br>
<p class="text-left"> <a target="_blank" href="https://rpgchat.netlify.app" target=”_blank”>RPG Chat</a> is an online chat application made for playing text role-playing games build using <b><i>MERN(MongoDB, Express, React, and Node.js) and Socket.io</i></b></p>
<br>
<br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</body>
</html>