-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathassignment1.html
76 lines (64 loc) · 2.49 KB
/
assignment1.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>
<head>
<link rel="stylesheet" href="assignment.css">
<title>My Blog</title>
</head>
<body>
<div id="header" class="section">
<img alt="" class="img-circle" src="https://www.w3schools.com/w3images/avatar2.png">
<p>Shuddhatm Choudhary</p>
</div>
<div class="section">
<h1><span>About Me</span></h1>
<p>
I'm <strong>Shuddhatm</strong>. I study in 1st year btech course at <b>NIT Karnataka</b> in <strong>computer science </strong>branch. i have recently started learning<i> computer programming</i>. And now iam learning <b>web development</b>.I come from Indore,Madhya pradesh and iam highly motivated to learn new things
</p>
<p class="quote">"Declare variables, not war"</p>
<hr>
</div>
<div class="section">
<h1><span>My Hobbies</span></h1>
<ol type="A">
<li>Learning Programming</li>
<li>Singing</li>
<li>Playing badminton</li>
<li>Swimming</li>
</ol>
</div>
<hr>
<div class="section">
<h1><span>My Skills</span></h1>
<ul>
<li>HTML <br />
<progress min="0" max="100" value="50"></progress>
</li>
<li>CSS<br />
<progress min="0" max="100" value="20"></progress>
</li>
<li>C language <br />
<progress min="0" max="100" value="50"></progress>
</li>
</ul>
</div>
<hr>
<div class="section">
<h1><span>My achievements</span></h1 up>
<ul>
<li>Got 10CGPA in class 10</li>
<li>Got 93.4% in class 12</li>
<li>Cleared Jee Mains 2018</li>
<li>Cleared Jee Advanced 2018</li></ul>
</div>
<hr>
<div class="section">
<h1><span>Contact Me</span></h1>
<form>
<input name="name" placeholder="Name" type="text" required /><br/>
<input name="email" placeholder="Email" type="email" required /><br/>
<textarea name="message" placeholder="Message" required ></textarea>
<input type="submit" value="SEND" background color="pink"/>
</form>
</div>
</body>
</html>