This repository has been archived by the owner on Sep 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
80 lines (80 loc) · 3.61 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<title>Cloud V</title>
<link rel="stylesheet" type="text/css" href="Styles/style.css"></link>
<link rel="stylesheet" type="text/css" href="Styles/light.css"></link>
</head>
<body class='cloudy'>
<header>
<a href='index.html'><img src='Images/xxxs.png' class='logo' /></a>
<div class='headRight'>
<div class='search'>
<div class='back'></div>
<input placeholder='Search' />
</div><a href='myprofile.html' class='avatar'>
<div class='back'></div>
<div class='avatarImg' style='background-image: url(User/1.jpg);'></div>
</a>
</div>
</header>
<main>
<section class='profile'>
<button>Follow</button>
<div class='icon' style='background-image: url(User/2.png);'></div>
<h2><a href=''>Skyus</a></h2>
<p>Just a rather cool description.</p>
</section>
<h3 class='repoHeaderText'>My Repositories</h3>
<div class='table myRepos'>
<a href='' class='tableCell'>
<div class='image'>
<img class='avatar' src='Images/unknown.jpg' />
</div><div class='text'>
<h3>Barrel Shifter</h3>
<p>An even better Barrel Shifter than Donkey Kong!</p>
</div>
</a>
<a href='' class='tableCell'>
<div class='image'>
<img class='avatar' src='Images/unknown.jpg' />
</div><div class='text'>
<h3>RiscBee</h3>
<p>A Barry good RISC-V RV32i Verilog implementation.</p>
</div>
</a>
<a href='' class='tableCell'>
<div class='image'>
<img class='avatar' src='Images/unknown.jpg' />
</div><div class='text'>
<h3>MIPS Parallel Processor</h3>
<p>Processor? I hardly even knew 'er!</p>
</div>
</a>
</div>
<div class='table myRepos'>
<a href='' class='tableCell'>
<div class='image'>
<img class='avatar' src='Images/unknown.jpg' />
</div><div class='text'>
<h3>Parameterized ALU</h3>
<p>This module uses the Parameterized Adder and Barrel Shifter to create a full ALU.</p>
</div>
</a>
<a href='' class='tableCell'>
<div class='image'>
<img class='avatar' src='Images/unknown.jpg' />
</div><div class='text'>
<h3>I always loved repositories.</h3>
<p>Love 'em. And my repositories? The best. Unbeatable. You won't find any better repositories. Crooked Hillary's repositories? Awful. Look at them. No meat. Sad!</p>
</div>
</a>
<div class='tableCellNone'></div>
</div>
</section>
</main><footer>
© 2017 CloudV <a href='explore.html'>Explore</a> <a href='blog.html'>Blog</a> <a href='about.html'>About</a>
</footer>
<script src="Scripts/frontend.js"></script>
</body>
</html>