-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (33 loc) · 921 Bytes
/
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
<!-- FILEPATH: /Users/mohammadhossain/Desktop/git lecture/index.html -->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css" />
<title>Git and GitHub Lecture</title>
</head>
<body>
<h1>Git and GitHub</h1>
<p>
Welcome to our Git and GitHub workshop! In this lecture, we will cover the
basics of Git and GitHub, including:
</p>
<!-- login form -->
<form>
<input placeholder="Email" />
<input placeholder="password" type="password" />
<button>Log in</button>
<!-- signup form -->
<form>
<input placeholder="Email" />
<input placeholder="Name" />
<input placeholder="dob" />
<button>signup</button>
</form>
<div id="jaeem-div">
<h1>Hello</h1>
<h2>I wonder if this works</h2>
<h3>I hope you can see this</h3>
</div>
<script src="index.js"></script>
</body>
</html>