-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice1.html
93 lines (86 loc) · 3.82 KB
/
practice1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="icon.png">
<title>Pashia</title>
<link rel="shortcut icon" type="image/x-icon" href="icon.png">
</head>
<body>
<div class="fixedemail">
<a href="mailto:[email protected]" target="_blank"><img
src="https://cdn-icons-png.flaticon.com/512/1334/1334110.png"></a>
</div>
<header>
<nav class="sideNav">
<ul>
<li><a href="#home"><img src="https://i.ibb.co/jv1c5xc/icon.png" alt="icon"></a></li>
<li><a href="#work">Work</a></li>
<li><a href="#about">about</a></li>
</ul>
</nav>
</header>
<div class="content">
<section class="section" id="home">
<div id="homecontent">
<div class="patterns">
<svg width="100%" height="100%">
<defs>
</defs>
<rect x="0" y="0" width="100%" height="100%" fill="transparent"> </rect>
<text id="name" x="50%" y="60%" text-anchor="middle">
Pashia Vang
</text>
</svg>
</div>
<div class="pic-contact">
<div class="pic">
<img src="https://i.ibb.co/fH4Cpmg/pashia.jpg" alt="pashia">
</div>
<div class="contact">
<p><strong>Contact info:</strong></p>
<p>Student Email: <strong>[email protected]</strong>
<br>Work Email: <strong>[email protected]</strong>
<br>Student ID: <strong>3084714</strong>
<br>LinkedIn: <a id="linkedin" href="https://www.linkedin.com/in/pashia-vang/">My LinkedIn
Profile</a>
</p>
<a id="page1" href="practice.html">Problem 1</a><br>
<a id="page1" href="practice2.html">Problem 2</a><br>
<a id="page2" href="practice3.html">Problem 3</a><br>
<a id="page3" href="practice4.php">Problem 4</a><br><br>
<iframe width="240" height="135" src="https://www.youtube.com/embed/02o-gxQy130" frameborder="0"
allow="autoplay; encrypted-media" allowfullscreen></iframe>
<br>
</div>
</div>
<label for="button">Button</label>
<a href="#work"><button class="button" id="button1">View Work</button></a>
</div>
</section>
<section class="section" id="work">
<div id="workcontent">
<h2 class="project"><a href="#">in progress</a><br></h2>
<div class="projectContainer" id="project1">
</div>
</div>
</section>
<section class="section" id="about">
<div id="aboutcontent">
<h1>Pashia</h1>
<p>Computer Science student at The University of Kansas. Let's connect!</p>
<div class="abouticons" id="email">
<img src="https://cdn-icons-png.flaticon.com/512/1334/1334110.png">
<p><a href="mailto:[email protected]" target="_blank">[email protected]</a></p>
</div>
<div class="abouticons" id="location">
<p>Kansas City, KS</p>
</div>
</div>
</section>
</div>
</body>
</html>