-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathabout.html
More file actions
88 lines (68 loc) · 2.13 KB
/
about.html
File metadata and controls
88 lines (68 loc) · 2.13 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<html>
<head>
<link rel="stylesheet" href="about.css">
<script src="changeCSS.js"></script>
</head>
<body>
<html>
<head>
<title>Changing CSS</title>
<link rel="stylesheet" type="text/css" href="empty.css"/>
</head>
<body>
<a href="#" onclick="changeCSS('empty.css', 0);">Remove CSS</a>
<a href="#" onclick="changeCSS('about.css', 0);">Add CSS</a>
</body>
</html>
<!-- <link rel="stylesheet" id="empty" href="empty.css"/> -->
<title>CSS Intro</title>
</head>
<body>
<h1>Your Name Here</h1>
<div>
<p>This is a bunch of information about myself. I'm from here and there and discovered my
love of programming when this happend. When I'm not working I'm busy doing this and that.
</p>
</div>
<img src="https://www.breakthrough-pt.com/wp-content/uploads/2014/11/female-default-profile-photo.png" alt="" >
<div >
<h3>Here are some of my Skills!</h3>
<ul>
<h3>Languages</h3>
<li>JavaScript</li>
<li>SQL</li>
<li>HTML5</li>
<li>CSS3</li>
</ul>
<ol>
<h3>Libraries</h3>
<li>React</li>
<li>PostgreSQL</li>
<li>Node</li>
<li>Bootstrap</li>
</ol>
</div>
<div>
<h3>Hardest Bug So Far</h3>
<p>My hardest bug I ever came across was this infinite loop I couldn't escape. </p>
<p>I came up with a totally sick solution though by doing ... </p>
</div>
<h2>Contact Me</h2>
<div>
Email me at: <a href="mailto:hello@pursuit.org" target="_top">hello@pursuit.org</a>
</div>
<ul>
<li> <a href="github.com">github link</a> </li>
<li> <a href="linkedin.com">LinkedIn link</a> </li>
<li> <a href="angellist.com">Angel list link</a> </li>
</ul>
<form action="index.html" method="post">
<input type="text" name="" value="">
<input type="submit" name="sumbit" value="submit">
</form>
</body>
</html>