-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
88 lines (74 loc) · 2.76 KB
/
home.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" initial-scale="1.0" />
<title>T1A2_portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="body">
<!--page layout parent-->
<p class="devcredit">A RandomDistro Dev</p>
<!--f>irst child-->
<header class="header">
<!--title, navbar, flexburger parent-->
<div class="image">
<!--3rd child, shapes logo-->
<img class="logo" src="logo.jpg" alt="james logo">
</div>
<div class="title-name">
<!--2nd child. this is the shape container of the object "name"-->
<p class="name">Portfolio 2022: James Tyndall</p>
<!-- only 1 item? must be 2nd child's "skin"-->
</div>
<nav>
<div class="container">
<!--4 child, parent of flexnav-->
<div class="nav_links">
<!--1st child? may be superfluous-->
<a href="/" class="a">The Man</a>
<!--1st-->
<a href="/" class="a">The Past</a>
<!--2nd-->
<a href="/" class="a">The Future</a>
<!--3rd-->
<a href="/" class="a">Thoughts</a>
<!--4th-->
</div>
</div>
</nav>
</header>
<br>
<section class="card-deck">
<div class="card-container-1">
<div class="cardback"><img src="cardback.png" alt="playing card with jimmie christo on it"></div>
</div>
<div class="card-container-1">
<div class="cardface-1">
<div class="cardname-1">
<p>JAMES TYNDALL</p>
</div>
<div class="char-img-1">
<!--2nd-->
<img class="img-1" src="james-headshot.png" alt="james-tyndall">
</div>
<!--3rd-->
<div class="stats-1">PLAYER STATS</div>
<!--4th-->
<br>
<div class="player-stats-1">
<!--5th child, 1st parent-->
<article class="attributes-1">
<!--1st-->
<p>NAME <br>AGE<br>STYLE<br>IDEOLOGY<br>POWER<br>STRENGTH<br>WEAKNESS</p>
</article>
<article class="data-1">
<!--2nd-->
<p>James Tyndall<br>43<br>Chaotic Neutral<br>Reponsible Anarchy<br>Catches Falling Objects<br>Eternal Optimism<br>Oblivious to Danger</p>
</article>
</div>
</div>
</div>
</section>
</body>
</html>