-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (51 loc) · 1.49 KB
/
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
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
<!-- Points To Remember -->
<!--
css file - external css
css inside html file - external css.
css inside html element as style attribute - inline html.
CSS SYNTAX
Selector (what) {property (how) :value (how)}
id & class
id - uniqe value (can't set multiple id's at same elements.)
class - open value (multiple classes can be at same element.)
css psuedo classes
-->
<html>
<html lang="en" viewport="">
<head>
<meta charset="UTF-8" >
<link rel="stylesheet" href="index.css">
<link rel="icon" href="favicon.ico">
<title>Manas Mishra Portfolio</title>
</head>
<body>
<img src="profile-P-modified.png" height="50%" alt="Manas Mishra Profile Picture">
<h1 class="heading">Manas Mishra</h1>
<p><em>Tech Enthusiast </p>
<hr>
<!-- <h3 class="sub-heading"><strong>Companies Info:</strong></h3> -->
<h3 class="sub-heading">Language Experties</h3>
<div class="listing-elements">
<li>Python</li>
<li>WEB DEVELOPMENT</li>
</div>
<!-- <li></li> -->
<br>
<p>Contact Us: <a href="contact.html">Contact Manas Here</a></p>
<hr>
<h3 class="sub-heading">Projects List</h3>
<table>
<thead>
<tr>
<th>Project</th>
<th>Reviews</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<!-- <p>
⭐⭐⭐⭐⭐<br>⭐⭐⭐<br>⭐⭐⭐⭐
</p> -->
</body>
</html>